Click here to Skip to main content
15,909,445 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Should be an easy question.. Splitter Pin
Gary R. Wheeler18-Nov-02 15:28
Gary R. Wheeler18-Nov-02 15:28 
Questionhow to read a DWORD value from registry Pin
SAK18-Nov-02 5:32
SAK18-Nov-02 5:32 
AnswerRe: how to read a DWORD value from registry Pin
Jason Henderson18-Nov-02 5:39
Jason Henderson18-Nov-02 5:39 
GeneralRe: how to read a DWORD value from registry Pin
Jason Henderson18-Nov-02 5:40
Jason Henderson18-Nov-02 5:40 
AnswerRe: how to read a DWORD value from registry Pin
Alvaro Mendez18-Nov-02 5:44
Alvaro Mendez18-Nov-02 5:44 
Generalfile processing Pin
MikeDeming18-Nov-02 5:06
MikeDeming18-Nov-02 5:06 
GeneralRe: file processing Pin
Alexandru Savescu18-Nov-02 5:08
Alexandru Savescu18-Nov-02 5:08 
GeneralRe: file processing Pin
Nick Parker18-Nov-02 5:33
protectorNick Parker18-Nov-02 5:33 
Hey Mike,
Alexandru is correct as using a ofstream object would be rather simple if that is all you need to do, something such as this should work:
ofstream outputfile;
outputfile.open("myFile.dat", ios::out);

if(outputfile.is_open())
{
    outputfile << m_int1;
    outputfile << m_int2;
    outputfile << time;
    outputfile.close();
}


Hope this helps.. Smile | :)

Nick Parker

May your glass be ever full.
May the roof over your head be always strong.
And may you be in heaven half an hour before the devil knows you’re dead. - Irish Blessing



GeneralRe: file processing Pin
Joaquín M López Muñoz18-Nov-02 9:35
Joaquín M López Muñoz18-Nov-02 9:35 
GeneralRe: file processing Pin
Ravi Bhavnani18-Nov-02 7:06
professionalRavi Bhavnani18-Nov-02 7:06 
GeneralRe: file processing Pin
MikeDeming18-Nov-02 8:12
MikeDeming18-Nov-02 8:12 
GeneralRe: file processing Pin
Ravi Bhavnani18-Nov-02 8:58
professionalRavi Bhavnani18-Nov-02 8:58 
GeneralFreelibrary hangs my application Pin
Alexandru Savescu18-Nov-02 4:46
Alexandru Savescu18-Nov-02 4:46 
GeneralRe: Freelibrary hangs my application Pin
Alvaro Mendez18-Nov-02 4:56
Alvaro Mendez18-Nov-02 4:56 
GeneralRe: Freelibrary hangs my application Pin
Alexandru Savescu18-Nov-02 5:06
Alexandru Savescu18-Nov-02 5:06 
GeneralRe: Freelibrary hangs my application Pin
Alvaro Mendez18-Nov-02 5:38
Alvaro Mendez18-Nov-02 5:38 
GeneralMFC Keyboard input trouble Pin
s o v a n n18-Nov-02 4:21
s o v a n n18-Nov-02 4:21 
GeneralRe: MFC Keyboard input trouble Pin
Alvaro Mendez18-Nov-02 4:44
Alvaro Mendez18-Nov-02 4:44 
GeneralRe: MFC Keyboard input trouble Pin
Bill Wilson18-Nov-02 13:26
Bill Wilson18-Nov-02 13:26 
GeneralAccessing DLL exports with NONAME Pin
Stephen Birdsall18-Nov-02 3:31
Stephen Birdsall18-Nov-02 3:31 
GeneralRe: Accessing DLL exports with NONAME Pin
Paul M Watt18-Nov-02 6:39
mentorPaul M Watt18-Nov-02 6:39 
GeneralApplication fails to update registry using COleTemplateServer::UpdateRegistry with Win2000 Pin
Luis E. Cuadrado18-Nov-02 2:53
Luis E. Cuadrado18-Nov-02 2:53 
GeneralRe: Application fails to update registry using COleTemplateServer::UpdateRegistry with Win2000 Pin
Michael P Butler18-Nov-02 3:14
Michael P Butler18-Nov-02 3:14 
GeneralRe: Application fails to update registry using COleTemplateServer::UpdateRegistry with Win2000 Pin
Hans-Georg Ulrich18-Nov-02 3:31
Hans-Georg Ulrich18-Nov-02 3:31 
GeneralRe: Application fails to update registry using COleTemplateServer::UpdateRegistry with Win2000 Pin
Luis E. Cuadrado19-Nov-02 3:07
Luis E. Cuadrado19-Nov-02 3:07 

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.