Click here to Skip to main content
15,913,361 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: __delegate gives compiler error Pin
fishalot6-Dec-04 18:18
fishalot6-Dec-04 18:18 
GeneralRe: Creating a group box at runtime Pin
MarcoNedwig6-Dec-04 4:33
MarcoNedwig6-Dec-04 4:33 
GeneralGet IP of network printer Pin
sylvaine6-Dec-04 4:21
sylvaine6-Dec-04 4:21 
GeneralRe: Get IP of network printer Pin
David Crow6-Dec-04 4:33
David Crow6-Dec-04 4:33 
GeneralRe: Get IP of network printer Pin
sylvaine6-Dec-04 21:25
sylvaine6-Dec-04 21:25 
GeneralCreating a group box at runtime Pin
MarcoNedwig6-Dec-04 4:18
MarcoNedwig6-Dec-04 4:18 
GeneralRe: Creating a group box at runtime Pin
David Crow6-Dec-04 4:30
David Crow6-Dec-04 4:30 
GeneralCPictureHolder to CBitmap Pin
greekgoddj6-Dec-04 4:13
greekgoddj6-Dec-04 4:13 
GeneralRe: CPictureHolder to CBitmap Pin
PJ Arends6-Dec-04 8:24
professionalPJ Arends6-Dec-04 8:24 
GeneralLoadLibrary("FilePath.dll") Failed - The specified procedure could not ne found Pin
SKPATEL206-Dec-04 3:04
SKPATEL206-Dec-04 3:04 
GeneralRe: LoadLibrary("FilePath.dll") Failed - The specified procedure could not ne found Pin
David Crow6-Dec-04 3:24
David Crow6-Dec-04 3:24 
GeneralRe: LoadLibrary("FilePath.dll") Failed - The specified procedure could not ne found Pin
missdeborah26-Jan-12 12:15
missdeborah26-Jan-12 12:15 
GeneralUnmanaged DLL - Reading an XML File Pin
DavidWGriffin6-Dec-04 2:46
DavidWGriffin6-Dec-04 2:46 
GeneralRe: Unmanaged DLL - Reading an XML File Pin
Steve S6-Dec-04 6:00
Steve S6-Dec-04 6:00 
GeneralRe: Unmanaged DLL - Reading an XML File Pin
Anonymous7-Dec-04 9:35
Anonymous7-Dec-04 9:35 
GeneralRe: Unmanaged DLL - Reading an XML File Pin
DavidWGriffin7-Dec-04 9:36
DavidWGriffin7-Dec-04 9:36 
Generalshortkeys Pin
V.6-Dec-04 2:22
professionalV.6-Dec-04 2:22 
GeneralRe: shortkeys Pin
David Crow6-Dec-04 2:35
David Crow6-Dec-04 2:35 
GeneralRe: shortkeys Pin
V.6-Dec-04 2:41
professionalV.6-Dec-04 2:41 
GeneralRe: shortkeys Pin
BlackDice6-Dec-04 2:47
BlackDice6-Dec-04 2:47 
GeneralRe: shortkeys Pin
V.6-Dec-04 3:28
professionalV.6-Dec-04 3:28 
GeneralRe: shortkeys Pin
V.6-Dec-04 3:29
professionalV.6-Dec-04 3:29 
GeneralCustom control in VC++ Pin
johnny__XP6-Dec-04 2:17
johnny__XP6-Dec-04 2:17 
GeneralProgram wont write to file Pin
CNewbie6-Dec-04 0:43
CNewbie6-Dec-04 0:43 
GeneralRe: Program wont write to file Pin
Sujan Christo6-Dec-04 1:54
Sujan Christo6-Dec-04 1:54 
Hi,
I took tried ur code. Seems that fstream is havin some prob. I tried with a different stream for writing after closing the current stream and it worked !. ie added the following code after stream.close();
fstream stream2("database.txt", ios::in | ios::out|ios::app );
stream2 << current << endl;
stream2.close();

This means that the first stream is having some problem
Sujan

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.