Click here to Skip to main content
16,006,845 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Launching mail client, open new message and add attachments Pin
Daniel 'Tak' M.12-Nov-03 8:21
Daniel 'Tak' M.12-Nov-03 8:21 
GeneralRe: Launching mail client, open new message and add attachments Pin
David Crow12-Nov-03 9:36
David Crow12-Nov-03 9:36 
GeneralRe: Launching mail client, open new message and add attachments Pin
Daniel 'Tak' M.12-Nov-03 9:51
Daniel 'Tak' M.12-Nov-03 9:51 
GeneralRe: Launching mail client, open new message and add attachments Pin
Michael Dunn12-Nov-03 8:25
sitebuilderMichael Dunn12-Nov-03 8:25 
GeneralRe: Launching mail client, open new message and add attachments Pin
Roger Allen13-Nov-03 1:45
Roger Allen13-Nov-03 1:45 
GeneralWord Wrap Pin
georgiek5012-Nov-03 7:11
georgiek5012-Nov-03 7:11 
GeneralRe: Word Wrap Pin
David Crow12-Nov-03 7:23
David Crow12-Nov-03 7:23 
GeneralRe: Word Wrap Pin
georgiek5012-Nov-03 8:50
georgiek5012-Nov-03 8:50 
I don't know how to check a txt file in binary mode...but from my description do you think she's lying and really did tamper with the file? Here is the code that saves the data:

void cList::Save(void)
{
	cListElement *pSave;

	pSave = pFirst;

	ofstream File;

	File.open("Data.dat", ios::trunc);

	while (pSave != NULL)
	{
		File << pSave->szData1  << endl;
		File << pSave->szData2  << endl;
		File << pSave->szData3  << endl;
		File << pSave->szData4  << endl;
		File << pSave->szData5  << endl;
		File << pSave->szData6  << endl;
		File << pSave->szData7  << endl;
		File << pSave->szData8  << endl;
		File << pSave->szData9  << endl;
		File << pSave->szData10 << endl;
		File << pSave->szData11 << endl;

		pSave = pSave->pNext;
	}

        File.close();
}

GeneralRe: Word Wrap Pin
David Crow12-Nov-03 9:38
David Crow12-Nov-03 9:38 
GeneralRe: Word Wrap Pin
georgiek5012-Nov-03 11:52
georgiek5012-Nov-03 11:52 
GeneralTVN_SELCHANGED problems Pin
LukeV12-Nov-03 6:46
LukeV12-Nov-03 6:46 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 6:50
David Crow12-Nov-03 6:50 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 6:56
LukeV12-Nov-03 6:56 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 7:09
David Crow12-Nov-03 7:09 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 7:11
LukeV12-Nov-03 7:11 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 7:21
David Crow12-Nov-03 7:21 
GeneralRe: TVN_SELCHANGED problems Pin
Roger Allen12-Nov-03 7:26
Roger Allen12-Nov-03 7:26 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 7:43
LukeV12-Nov-03 7:43 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 7:39
LukeV12-Nov-03 7:39 
GeneralRe: TVN_SELCHANGED problems Pin
David Crow12-Nov-03 8:00
David Crow12-Nov-03 8:00 
GeneralRe: TVN_SELCHANGED problems Pin
LukeV12-Nov-03 8:10
LukeV12-Nov-03 8:10 
GeneralDynamically-built Menus Pin
Sean Payne12-Nov-03 6:22
professionalSean Payne12-Nov-03 6:22 
GeneralRe: Dynamically-built Menus Pin
Roger Allen12-Nov-03 7:23
Roger Allen12-Nov-03 7:23 
GeneralRe: Dynamically-built Menus Pin
Zero_divide_113-Nov-03 16:30
Zero_divide_113-Nov-03 16:30 
General_com_dispatch_method undefied Pin
Rene De La Garza12-Nov-03 5:58
Rene De La Garza12-Nov-03 5:58 

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.