Click here to Skip to main content
15,927,347 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Form Circular Reference? Pin
Iain Clarke, Warrior Programmer24-Mar-09 8:47
Iain Clarke, Warrior Programmer24-Mar-09 8:47 
Questionbitmap in combobox Pin
Rakesh524-Mar-09 3:28
Rakesh524-Mar-09 3:28 
AnswerRe: bitmap in combobox Pin
Iain Clarke, Warrior Programmer24-Mar-09 3:51
Iain Clarke, Warrior Programmer24-Mar-09 3:51 
Questionhow to know in a fonction of c++ if a pc use the internet to download or upload Pin
josephsaliba24-Mar-09 3:02
josephsaliba24-Mar-09 3:02 
AnswerRe: how to know in a fonction of c++ if a pc use the internet to download or upload Pin
led mike24-Mar-09 4:46
led mike24-Mar-09 4:46 
AnswerRe: how to know in a fonction of c++ if a pc use the internet to download or upload Pin
David Crow24-Mar-09 4:47
David Crow24-Mar-09 4:47 
QuestionHow to navigate between corresponding .cpp and .h file in VS2008? Pin
followait24-Mar-09 2:54
followait24-Mar-09 2:54 
AnswerRe: How to navigate between corresponding .cpp and .h file in VS2008? Pin
Sarath C24-Mar-09 3:05
Sarath C24-Mar-09 3:05 
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 

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.