49,761 Topics

Member Avatar for
Member Avatar for wingwarp

ok this will not work what im trying to do is create a game where you are a miner and need to put mines in 5 different spots im about 1/3 done but i cant get the money to come in after i build the mine i have gone through …

Member Avatar for Dave Sinkula
0
101
Member Avatar for DotNetUser

I'm coding in VC++.NET 2003. I have a tabcontrol with 6 tabpages. In Form_Load, I dynamically create buttons on each of the tabpages, but make them invisible. Inside a static function, I would make buttons visible according to the parameters. My program would get stuck in a loop when I …

0
73
Member Avatar for inquizitive1

Hello.. I am trying to do image processing using C. However, I am a complete novice at this. Can anyone please tell me about a C library(or a similar program etc) to read JPEG (or other) image files and store the data thus obtained. Please help me in any way …

Member Avatar for ~s.o.s~
0
88
Member Avatar for jimtaylor

Dumb question #18: How can I, in C++ (Borland) sound a musical note or a series of notes? Jim Taylor

Member Avatar for ~s.o.s~
0
64
Member Avatar for Blitzer

I have '1' and I want to convert to integer 1 I think I must use atoi but I don't know how to use this function.. int i1 = atoi(item[i]); // item[i] is char then it show ERROR in member fuction how to use atoi???? how can I declare it??:sad:

Member Avatar for ~s.o.s~
0
180
Member Avatar for ostkaka

Hello, I wonder if someone wan´t to learn C++ with me on msn or here. I started with a tutorial in C++ but I got stuck, so I thougt it would be better if I learned it with someone else who also want´s to learn C++. So if you are …

Member Avatar for wingwarp
0
112
Member Avatar for L33VaNcL33F

Hello everybody, I'm totally newbie with c++ language. I'm using Visual C++ 2005 Express Edition. I like to make a working GUI with my first c++ code. My question is: How to insert this code to Windows Forms (GUI) that contain: 1. Press "Button" to randomly generate the number from …

Member Avatar for mostafadotnet
0
2K
Member Avatar for CyberLev

I am working out a function that merges two lists and returns a pointer to a third list which contains the merged lists. Can anyone help? Here is what I have thus far: [code]/STLList - use the list container of std library #include <list> #include <string> #include <cstdio> #include <iostream> …

Member Avatar for CyberLev
0
105
Member Avatar for justobioma

Hello All,Iam Obi fronm Nigeria and has been studying c++ for some time now .I recently took on a challenge to design a kind of airtime service for the mobile communication industry but can only say that I have not really delivered on that.Below is the code and I would …

0
56
Member Avatar for djkross

everything seems to go fine except when i get to the search. either the program runs with a runtime error or it'll just return "NO MATCH". by the way, when i put the if/else statement in the loop, it works but it also returns NO MATCH until it finds the …

Member Avatar for djkross
0
247
Member Avatar for nehareddy33
Member Avatar for portege
0
125
Member Avatar for wingwarp

c++ is in many games and processes are handled with C++... IF you want to learn C++ You will need 2 things... 1. compiler 2.patience you can find a great compiler called devc++ link: [URL="http://ftp1.sourceforge.net/dev-cpp/devcpp4.zip"]http://ftp1.sourceforge.net/dev-cpp/devcpp4.zip[/URL] and inner patience... or a good tutorial links: [URL="http://www.cprogramming.com/tutorial.html#c++tutorial"]http://www.cprogramming.com/tutorial.html#c++tutorial[/URL] [URL="http://www.cplusplus.com/doc/tutorial/"]http://www.cplusplus.com/doc/tutorial/[/URL] i can explain enough to …

0
68
Member Avatar for wingwarp
Member Avatar for wingwarp
0
166
Member Avatar for master4u

hi this is subham from india i wana help i am trying a program to operate pc through mobile but in doing so i am getting one prob in accessing inbox of mobile phones which will be connected to pc through a data cable i want that messages present in …

Member Avatar for Dave Sinkula
-1
139
Member Avatar for tefflox

i've been at this for an hour, feeling stupid by now, getting sick of these segmentation faults.. [code] // board.cpp #include <iostream> using namespace::std; const int NUM_ROWS = 10, // Board dimensions NUM_COLS = 20; // Function prototypes void fillRectangle ( char board[NUM_ROWS] [NUM_COLS] , int row, int col, int …

Member Avatar for ~s.o.s~
0
330
Member Avatar for shwetashelke

Sir, I want to make connectivity in c with database oracle so plz tell me the code for that.thanx in advance.

Member Avatar for Dave Sinkula
0
137
Member Avatar for Phruis

I am extremely new to C++ and I've been trying to do a few things. I want to read a file and get all the numeric values. This information is going to be used in writing a binary file. I also want to count how many numeric values where found. …

Member Avatar for Dave Sinkula
0
111
Member Avatar for vicky_dev

Hi... I am trying to write a string class...this part is supposed to concatenate two strings, but I am having trouble with constructors/destructors.:rolleyes: Please explain the exact sequence of calls and the correct way to code.:?: [code] #include <iostream> #include <cstring> #include <conio.h> using namespace std; class STRING { char …

Member Avatar for WolfPack
0
400
Member Avatar for tefflox

I don't know if I should post all the code to start, but if you need to see all the code just ask. Trying to post the relevant stuff: [code] void findHoliday (const DayData holidayList[],int listLength, int month,int day, char holidayCopy[]) .... holidayCopy = holidayList[i].holiday; [/code] now it's puzzling since …

Member Avatar for tefflox
0
315
Member Avatar for rapt0r

In a c++ tutorial this was one way to define a string [CODE] #include <string> using namespace std; string name; name="mark"; [/CODE] But it dosent work i get errors.Why is this?

Member Avatar for ~s.o.s~
0
192
Member Avatar for wingwarp
Member Avatar for SamY

How can one manipulate the vdu. Like to creae a class which can be used to create objects like windows depending on wdth like [COLOR=red]_o/s_window(120,20,0xddff,0);[/COLOR] [COLOR=#ff0000][/COLOR] 120-height 20-width hexadecimal-base color 0-border stylethe window will look like this with a color gradient and can run other programs.

Member Avatar for ~s.o.s~
0
131
Member Avatar for Simon268

Hi all. I can't get this to compile; [code] #include <iostream> #include <string> using namespace std; int main () { int number; string response; for (number=5; response!='Y';) { cout <<number <<endl; cout <<"Had Enough (Y/N)?"; cin>>response; } cin.get (); cin.get (); return 0; } [/code] when i try to compile …

Member Avatar for Simon268
0
182
Member Avatar for Simon268

Hi all Any help would be much appreciated. Im following the about.com tutorial, and one of the exercises says i should make this program; [code] #include <iostream> #include <string> using namespace std; int main () { string name; int ID; cout<<"enter your name\n"; cin>> name; cout<<"enter your id\n"; cin>> ID; …

Member Avatar for Simon268
0
147
Member Avatar for wingwarp

I am a basic c++ programer :sad: that wants to understand graphics but all the online guides confuse me i understand BASIC c++ code like... :-| [code] #include <iostream> using namespace std; int main() { int forever; int HIGH = 15; int LOW = 1; int HIGH1 = 50; int …

Member Avatar for wingwarp
0
244
Member Avatar for slacke

Hi I used an variable int i; in a faunction block as it is in a code below. [code] #includes.... int i; int function() { while(charbuff[i]!=' ') { ofstream stream("file.lng", ios::app) stream << charbuff[i]; i++; stream.close(); } return 0; } main() { ........... some code function(); /*call function */ cout …

Member Avatar for slacke
0
163
Member Avatar for ranaz

hi! i hav a code that was compiled using Microsoft VC++1.52. now i need to compile it on VC 6. but the compiler is generating the errors in statements containing use of FAR pointer. can any one guide me how to remove these errors or where can i find this …

Member Avatar for Ancient Dragon
0
158
Member Avatar for schmidty169

This is what I have to do [COLOR=black][COLOR=black][COLOR=black]We will initialize the tree by hard coding the values illustrated below. You will need to write, test and execute a driver program that will use the complete binary tree implementation. [/COLOR][/COLOR][/COLOR] [COLOR=black][COLOR=black][COLOR=black]// this will initialize the tree node values treenodes[0]=5; treenodes[1]=10; treenodes[2]=2; …

Member Avatar for schmidty169
0
543
Member Avatar for tefflox

I'm trying to return a struct array from two functions. I don't know what to say. Here is my code: [code] #include <iostream> #include <iomanip> using namespace std; struct worker { int idNumber; int hoursWorked; double hourlyRate; double earned; }; [B]???[/B] input(); [B]???[/B] calculateEarned(worker []); void outputWorkers(worker []); int overtimeWorkers(worker …

Member Avatar for tefflox
0
127
Member Avatar for tefflox

Please take a look at my function call. I don't know if I'm handling the return values right. It works for an employee with less than or equal to 40 hours worked, but the over time is paying 2.5 times instead of 1.5 times. Should I be using some kind …

Member Avatar for tefflox
0
176

The End.