199,132 Archived Topics
Remove Filter ![]() | |
hi friends.. i got the below error while compiling a simple .cpp pgm in microsoft visual studio->vc++.. tht vcspawn.exe file is in Microsoft Visual Studio\Common\IDE\IDE98 folder.. can anyone tell me abt this problem?do i have any prob in installation?do i have to change any configuration/settings?.. Configuration: sc1 - Win32 Debug-------------------- … | |
hey guys, im have written a code that all it does is get user input and run a simple fork task. the problem i am running is the commands i type for example /bin/ls and so on does nothin it jsut asks for the next input. Could someone give me … | |
hello, i'm trying to get [URL="http://superiorminitrucks.com/admin"]http://superiorminitrucks.com/admin[/URL] login functionality to work. It's my first logon script, which was tested to work, but I'm running out of brute force to get this one through... [CODE]<?php //////**************************************/ // // LOGIN PAGE // // Server-side: // 1. Start a session // 2. Clear the … | |
Hi, I am looking for a J2ME mp3 player for motorola v3i mobile phone, this phone come with itunes but limited only to 100 songs, so im looking for another media player supported by this phone, like the one motorola v360 have, so that I can play more than 100 … | |
Hi to every one, I need some help about the program i am riting. I am a beginner in java and i cant split my input text file to its tokens. the part of the input file is : [QUOTE]101 Car 06AB1212 100 Y A 3 102 Car 06BG0101 200 … | |
These are the question an my codes are attached to this form! Create a class called Reservation. This class will have a data member that is an array of type int, of size 10. This member should be called plane. You should also have a data member called seats which … | |
Hi Again, Well i'm bored and i've decided to do some coding just for practice and i've decided to work on a text based RPG, its only going to be basic due to my own knowledge but i think its doable. unfortunatly i've come accros a problem already and i've … | |
Hello everybody. I want to ask for some help. I need to type program that calculates areas of rectangle, triangle, circle and ellipse ( user input: rectangle = lower left corner point, length and width; triangle = top point, height, base; circle = radius and center point; ellipse = center … | |
Hello! I m struggling with this button and/or code to work. The button with Process.Start opens any folder I want if I do not use Ifs and Elses, but I do need to open folder based on user selection of name in the combobox and one choice from two radio … | |
i would like to create a program that converts a number system to another i found few ideas on how to do this but lacks explanation so i can't figure out 'how it worked'. found that 'for loop' over the net,did some editing then applied it in a program. here's … | |
I am going to work on the sales and purchase module of an ERP.I am facing problem while designing the database.I want to do sales and purchase with respect to bedspread. Kindly give me a general design with respect to tables and their attributes | |
Hi all I'm experimenting with win API gui stuff, and I've run into a problem with dialog boxes. Currently, when the "Show DialogBox" option in the menu is pressed, the dialog box pops up. I then need for this dialog box to be draggable/moveable, and to "hide" when its close … | |
hello all... i have a problem with connecting VB 6 enterprise edition & crystal report 11... now, i have added "crystal report control" component, and i try to load report.rpt (crystal report) from VB6... but error occurs : UNABLE TO LOAD REPORT in script below : >>crystalreport1.action = 1 i … | |
hi i am facing problem with insertion of data into database front end:- vb.net2003 backend:- SQL Server2000 please tell me code with which i can insert data in database | |
I know this thread is "a little bit" old, but i would like if you can help me. Im using sprintf(). This is my code: [CODE] int countDigits(int inteiro,int max){ char *string; string = (char *) calloc(max+1,sizeof(char)); sprintf(string,"%d",inteiro); return strlen(string); }[/CODE] However if the first digit of "inteiro" is a … | |
Below is a QuickSort Serial Algorithm..... 1. procedure QUICKSORT(A,q,r) 2. begin 3. if q < r then 4. begin 5. x := A[q]; 6. s := q; 7. for i := q+1 to r do 8. if A[i] <= x then 9. begin 10. s :=s+1; 11. swap(A[s],A[i]); 12. end … | |
Hi. I am currently working on a quote system project. The final step of the quote would be to print the quote. Does anyone know whether it is possible to create a pdf file with c# coding? even if i first have to create something else like a XML file … | |
hai..can anyone help me on this task...i might need some sample on doing it.TQ Tasks: 1 You are expected to write a program that simulates CPU scheduling algorithms (SJF and SRTF). 2 The program will request the user to set the the number of processes to be selected for execution. … | |
Hi, I am a newbie, can someone please clarify the difference between "\0" and '\0' and 0 as far as C++ is concerned?? Why can't they be used inter-changeably ?? | |
Im getting invalid coulmn index...any suggestions?...thanx in advance [code=java] public static int[] getListSummary(UserDataVO userData) throws Exception { Connection connection = null; PreparedStatement pstmt = null; ResultSet resultSet = null; int[] listSummary = {0,0}; int leadCount = 0; try { connection = DataBaseConnectionManager.getConnection(); if (connection != null) { if (userData.isAgentType()) { … | |
Is it possible to retrieve one cell of data from a MySQL database? I need to put the ID from one row of a table into a php variable so that I can recall the correct row later on for editing purposes. If you know how to do this please … | |
hi. i need to read csv files which will come as input. I am not able to do this using String tokenizer for two reasons: First StringTokenizer doesn't handle empty strings and second it doesn't have a way to easily get Strings in quotes that have commas inside them. So, … | |
Hi guys, I need to put the results of a query to an acces database onto a word document. now the query is driven by user choices so it might return one record or it might return over 300 records or then again, nothing at all. but if there is … | |
IF anyone can give me a little more assistance I would be very greatful. I am working on this program for my C++ class and here is how it goes. Directions. Write a program that calculates and prints the monthly paycheck for an employee. The net pay is calculated after … | |
[B][COLOR=navy]Hi every body[/COLOR][/B] [B][COLOR=navy]I have a textbox on my form and i want to know how many words i have writen in it.[/COLOR][/B] [B][COLOR=navy]the idea >> i thought if i declared ( x as string and x =" ") now x equal one space if i can count how many … | |
God Reveals DNA Secrets For many years molecular biologists have been mystified by the fact that very little of an organism's DNA seems to serve any useful function. Last night God revealed the mystery by posting the code on a warez site. I am just posting the first segment of … | |
This is my code: [code][BITS 32] .section text global start start: xor edx, edx ; Avoids NULL byte push edx ; MsgBox type push edx ; MsgBox body push edx ; MsgBox caption push edx ; Owner hWnd mov eax, 0x7E45058A ; Addr of MessageBox, USER32 should be loaded call … | |
Suppose you have a computer that requires 1 minute to solve problem instances of size 1000. What instance sizes can be run in 1 minute if you buy a new computer that runs 1000 times faster than the old one, assuming the following time complexities T(n) for our algorithm? (a) … | |
Hello, I have a problem to print the whole string in argv[4]. here's my code #include<stdio.h> #include<string.h> #include<stdlib.h> #define XMAX 65 #define YMAX 32 char screen[XMAX][YMAX]; void printScreen(void); void fill(int, int, char[]); int main(int argc, char *argv[]) { FILE *in; int x, y,z; char a; if (argc!= 5) { fprintf(stderr,"Usage:\n\t%s … | |
the problem with this is that after it accepts the four (4) integers it stop and dont go on to find the average. IS THERE ANYONE OUT THERE THAT CAN HELP. NUFF RESPECT TO ALL WHO TRY TO HELP. [code=c] //to calculate the average of 4 numbers #include<stdio.h> int get4ints(){//function … | |
[COLOR=navy]I request to all the programers plzzzz help me out in this assignment.[/COLOR] [COLOR=#000080]its not for me but for my boss's doughter. i made a mistake by deleting it from the USB now she have to submit it within two weeks plz help me Since i have no background in … | |
i am having two problems with my code. the first error message highlighted in green says i need to return a value instead of what i have written down. and the line highlighted in red says that my value is not being ignored. can anyone help? I am totally lost. … | |
Hi.. I have to make a program in c++ for plotting a sine curve..using arrays ..in horizontal direction not vertical .. can I have an alogarithm or just a hint how to go on making ...thanks :) | |
hai.. I have a database with a primary key(Employee id). I am having an insert form, display form, delete form and main page form. I want to validate the Employee id entered by the user in the insert form that means I want to check with the database, If it … | |
Is there a function that draw 2d objects like boxes and circles . I remember that in qbasic there was a few 2dobjects functions so i thought that there is a chance c will have some too. Thanks . | |
I done login form in c# using login control. It gives runtime error near while loop. error-'Invalid attempt to Read when reader is closed.' Please give me solution bcoz i tried many options here. using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; … | |
I have a problem with php and checkbox. Can someone help me with it? I want to be able to compute values of a checkbox that is when the checkboxes are checked using php. example <input type="checkbox" name="course" value="¢30 /> JAVA <input type="checkbox" name="course" value="¢100 /> C <input type="checkbox" name="course" … | |
ok so far this is what ive got for my code im trying to figure out how to start my for loop that will receive the array and the int that represents the count(2)? [code]#include<iostream> using namespace std; struct Student { char Name[30]; float GPA; int Major; }; //Function Prototype … | |
hi , can anyone tell me how to read contents of a CSV file into my java string. and how to convert a CSV file to a Excel file in java . ![]() | |
hey I am learning pascal and need to write a program where, when the user enters a sentence finishing with a full stop it prints the number of words in the sentance and the number of words with over 3 letters in. I have no idea how to count the … | |
Hello, I am brand new to Visual Basic, having done some programming in Basic many years ago, so this environment is all new to me. I am creating my first project that involves solving a simple math expression. When I attempt to debug I get the following warning message, and … | |
hi, This is my problem i have programmed a little word unscrambler i have a file wordlist.txt in my python folder and this program works just fine and unscrambles one word at a time but i dont how how to edit it to make it unscramble 10 words at a … | |
Hi all, I have an urgent problem..Plzz can anyone help me guys.. We are into a student management system project and we want to send E-mails to students once tehy are registered with us saying taht from so and so date teh course is gonna start. I am getting teh … | |
HI! can you guide me about writting viruses in assmbly? tnx. | |
This is part one of a series I am sending to some of my friends. It teaches you how to make a pop-up window using scheme, and change the message of the window, position, size, content, etc. Part two will teach how to link windows together, make them visible, invisible, … | |
I need to produce a 'report' from a whole bunch of different criteria used to generate the resulting document on the web. This will need to be printed to an A4 sheet, but here is the rub - I need to be able to control page breaks. I need to … | |
we have a project due that involves reading in data from a file which is a 30x20 grid consisting of 30 processes each of which have 10 CPU bursts and IO bursts. From this we are supposed to implement FCFS, SJF, RR and a multi-level feedback queue in C++. From … | |
Hi, These are some of the few questions for which i couldn't find answers. :lol: . I was just hoping if any of you can help me out. 1.Write a "Hello World" program in 'C' without using a semicolon. 2.Write a C++ program without using any loop (if, for, while … | |
Design and implement a class hierarchy for any organization, employees. We are interested in modeling only the Managers and Faculty. Director shall be treated as a Manager. The following information for each employee needs to be captured: First Name, Middle Initial, and Last Name All of above are of type … |
The End.