Click here to Skip to main content
15,891,607 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: SetForegroundWindow and flash taskbar Pin
Nibu babu thomas31-Oct-06 20:26
Nibu babu thomas31-Oct-06 20:26 
QuestionFile I/O w/ Unicode Dialog [modified] Pin
aquawicket31-Oct-06 13:55
aquawicket31-Oct-06 13:55 
AnswerRe: File I/O w/ Unicode Dialog Pin
Mark Salsbery31-Oct-06 16:19
Mark Salsbery31-Oct-06 16:19 
GeneralRe: File I/O w/ Unicode Dialog Pin
aquawicket31-Oct-06 16:32
aquawicket31-Oct-06 16:32 
GeneralRe: File I/O w/ Unicode Dialog Pin
Mark Salsbery31-Oct-06 17:12
Mark Salsbery31-Oct-06 17:12 
GeneralRe: File I/O w/ Unicode Dialog Pin
aquawicket31-Oct-06 18:16
aquawicket31-Oct-06 18:16 
GeneralRe: File I/O w/ Unicode Dialog Pin
Mark Salsbery31-Oct-06 18:51
Mark Salsbery31-Oct-06 18:51 
GeneralRe: File I/O w/ Unicode Dialog Pin
aquawicket1-Nov-06 4:53
aquawicket1-Nov-06 4:53 
Ok... I know i'm real close.. lol


CFile cfFile (L"C:\\TextFile.txt", CFile::modeNoTruncate | CFile::modeReadWrite );

char buf[512];

int variable = 12;
int i;

CArchive ar( &cfFile, CArchive::store, 512, buf );
ar.Write(&variable, sizeof(int));
ar.Close();

CArchive ar2( &cfFile, CArchive::load, 512, buf );
i = ar2.Read(&variable, sizeof(int));
ar2.Close();

temp.Format((L"%d"), i);
AfxMessageBox(temp); //dispalys 0... need 12
GeneralRe: File I/O w/ Unicode Dialog Pin
aquawicket1-Nov-06 5:03
aquawicket1-Nov-06 5:03 
GeneralRe: File I/O w/ Unicode Dialog Pin
Mark Salsbery1-Nov-06 5:14
Mark Salsbery1-Nov-06 5:14 
QuestionStrange error with File I/O Pin
Anthony Mushrow31-Oct-06 10:26
professionalAnthony Mushrow31-Oct-06 10:26 
QuestionRe: Strange error with File I/O Pin
David Crow31-Oct-06 10:28
David Crow31-Oct-06 10:28 
AnswerRe: Strange error with File I/O Pin
Anthony Mushrow31-Oct-06 10:49
professionalAnthony Mushrow31-Oct-06 10:49 
QuestionRe: Strange error with File I/O Pin
David Crow31-Oct-06 10:54
David Crow31-Oct-06 10:54 
GeneralRe: Strange error with File I/O Pin
Anthony Mushrow31-Oct-06 10:56
professionalAnthony Mushrow31-Oct-06 10:56 
GeneralRe: Strange error with File I/O Pin
Christian Graus31-Oct-06 11:02
protectorChristian Graus31-Oct-06 11:02 
GeneralRe: Strange error with File I/O Pin
led mike31-Oct-06 11:13
led mike31-Oct-06 11:13 
GeneralRe: Strange error with File I/O Pin
Anthony Mushrow31-Oct-06 11:54
professionalAnthony Mushrow31-Oct-06 11:54 
GeneralRe: Strange error with File I/O Pin
Christian Graus31-Oct-06 15:53
protectorChristian Graus31-Oct-06 15:53 
GeneralRe: Strange error with File I/O Pin
Anthony Mushrow31-Oct-06 16:26
professionalAnthony Mushrow31-Oct-06 16:26 
GeneralRe: Strange error with File I/O Pin
led mike1-Nov-06 4:54
led mike1-Nov-06 4:54 
GeneralRe: Strange error with File I/O Pin
Anthony Mushrow1-Nov-06 5:39
professionalAnthony Mushrow1-Nov-06 5:39 
GeneralRe: Strange error with File I/O Pin
led mike1-Nov-06 7:05
led mike1-Nov-06 7:05 
GeneralRe: Strange error with File I/O Pin
Anthony Mushrow1-Nov-06 11:10
professionalAnthony Mushrow1-Nov-06 11:10 
GeneralRe: Strange error with File I/O Pin
led mike1-Nov-06 11:24
led mike1-Nov-06 11:24 

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.