Click here to Skip to main content
15,915,636 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to navigate between corresponding .cpp and .h file in VS2008? Pin
Jijo.Raj24-Mar-09 3:31
Jijo.Raj24-Mar-09 3:31 
AnswerRe: How to navigate between corresponding .cpp and .h file in VS2008? Pin
Rolf Kristensen25-Mar-09 10:33
Rolf Kristensen25-Mar-09 10:33 
QuestionDeleted File Pin
john563224-Mar-09 2:53
john563224-Mar-09 2:53 
AnswerRe: Deleted File Pin
Sarath C24-Mar-09 3:03
Sarath C24-Mar-09 3:03 
AnswerRe: Deleted File Pin
Jijo.Raj24-Mar-09 4:09
Jijo.Raj24-Mar-09 4:09 
GeneralRe: Deleted File Pin
john563225-Mar-09 1:54
john563225-Mar-09 1:54 
QuestionProblem in struct Pin
NewVC++24-Mar-09 2:40
NewVC++24-Mar-09 2:40 
AnswerRe: Problem in struct Pin
Iain Clarke, Warrior Programmer24-Mar-09 2:45
Iain Clarke, Warrior Programmer24-Mar-09 2:45 
I'm not quite sure what you're after, but in pure C stuff, you can write values to a file like so:
FILE *f;
...
f = fopen ("c:\\myfile.abc", "w");   // makes a new empty file.
...
fprintf (f, "Some Integer: %i\n", nMyInt); // could be buf.st_size if you like
...
fclose (f);


I hope that puts you on the right path,

Iain.

In the process of moving to Sweden for love (awwww).
If you're in Scandinavia and want an MVP on the payroll (or happy with a remote worker), give me a job!

AnswerRe: Problem in struct Pin
Michael Schubert24-Mar-09 2:47
Michael Schubert24-Mar-09 2:47 
GeneralRe: Problem in struct Pin
NewVC++24-Mar-09 2:55
NewVC++24-Mar-09 2:55 
Questionhlow.. Pin
merry jermamae arcilla24-Mar-09 2:23
merry jermamae arcilla24-Mar-09 2:23 
AnswerRe: hlow.. Pin
Michael Schubert24-Mar-09 2:31
Michael Schubert24-Mar-09 2:31 
AnswerRe: hlow.. Pin
David Crow24-Mar-09 2:35
David Crow24-Mar-09 2:35 
GeneralRe: hlow.. Pin
Michael Schubert24-Mar-09 2:38
Michael Schubert24-Mar-09 2:38 
AnswerRe: hlow.. Pin
Iain Clarke, Warrior Programmer24-Mar-09 2:49
Iain Clarke, Warrior Programmer24-Mar-09 2:49 
GeneralRe: hlow.. Pin
Michael Schubert24-Mar-09 2:55
Michael Schubert24-Mar-09 2:55 
AnswerRe: hlow.. Pin
Sarath C24-Mar-09 2:57
Sarath C24-Mar-09 2:57 
AnswerRe: hlow.. Pin
CPallini24-Mar-09 3:03
mveCPallini24-Mar-09 3:03 
AnswerGet back in the Soapbox Kyle Pin
led mike24-Mar-09 4:36
led mike24-Mar-09 4:36 
AnswerRe: hlow.. Pin
Rick York24-Mar-09 11:17
mveRick York24-Mar-09 11:17 
QuestionExtendedcombobox application Pin
Rakesh524-Mar-09 2:14
Rakesh524-Mar-09 2:14 
AnswerRe: Extendedcombobox application Pin
Iain Clarke, Warrior Programmer24-Mar-09 2:50
Iain Clarke, Warrior Programmer24-Mar-09 2:50 
GeneralRe: Extendedcombobox application Pin
Rakesh524-Mar-09 3:32
Rakesh524-Mar-09 3:32 
GeneralRe: Extendedcombobox application Pin
Iain Clarke, Warrior Programmer24-Mar-09 3:54
Iain Clarke, Warrior Programmer24-Mar-09 3:54 
GeneralRe: Extendedcombobox application Pin
Rakesh524-Mar-09 19:12
Rakesh524-Mar-09 19:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.