Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #13.9K
~2K People Reached
Favorite Forums
Favorite Tags

14 Posted Topics

Member Avatar for vegaseat

If you don't mind using the old FILE structure, you can print by using: FILE *fp; fp = fopen(prn, w); fprintf(prn, "%s", charstr);

Member Avatar for abdullah0
0
221
Member Avatar for bombe

[QUOTE=bombe]Hi viewers, I was trying to delete a file from my hard drive and I don't really have a good place to start. I googled it and came up with a code derived from multiple sources. I was wondering if anyone could help me out with the code to delete …

Member Avatar for permoda
0
122
Member Avatar for redstar

x is not declared as a variable anywhere that I can see. this should give a complier error. Also, your while statement is terminated by a semicolon. This would work for do-while statement but not when the using a while by itself. If using a while in this way it …

Member Avatar for Nick Evan
0
278
Member Avatar for MikeTiger

Here is a link: [url]http://msdn.microsoft.com/visualc/vctoolkit2003/[/url]

Member Avatar for steveh
0
103
Member Avatar for MrAdam

Remember also that now you are competing in a global market. If you go into computer science with an eye to writing programs as your only job, you will be competing with many other (offshore) programmers. These days it might be better to go into a field such as MIS …

Member Avatar for hollystyles
0
142
Member Avatar for winbatch

If you use Visual C++, you can use the CRecordSet (and its variants) to do all the file handling for you. It works very well (in my experience) and will save automatically thru the database application.

Member Avatar for winbatch
0
187
Member Avatar for ohnbabygal

[QUOTE=ohnbabygal]hi im writin a simple GUI project usin C++ (Dialog). i have an input file with a list of foods. my goal is to display the list of foods in a ComboBox and then Add some new food and Delete some. But i just cant put the list to a …

Member Avatar for arunkg999
0
218
Member Avatar for sachin kumar
Member Avatar for stackOverflow

If you are allowed to use MSVC++, the application wizard will write the program for you.

Member Avatar for alc6379
0
143
Member Avatar for LoS_RoOcKoO
Member Avatar for Robson85

if (alt == 10.000); is incorrect (as far as logic). I usually use Visual C++ 6.0 but had Dev C++ handy, it gives the following error: [Linker error] undefined reference to `get_fuel(int&, int&, float)'

Member Avatar for Dark_Omen
0
189
Member Avatar for Tom Pilk
Member Avatar for Mahen

Go to [url]www.codeguru.com[/url] and search for this topic. they have an example there.

Member Avatar for Extreme
0
163
Member Avatar for JimJake

You can go into mesage handlers and add a function for WM_INITIALUPDATE. If you click on this, it will probably show that the OnInitialUpdate fxn is there but not shown in ClassWizard yet. If you prefer you can add a menu item that calls DoModal for your dialog.

Member Avatar for steveh
0
145