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

C / C++ / MFC

 
AnswerRe: Templates and protected members Pin
Justin Tay20-Aug-06 8:14
Justin Tay20-Aug-06 8:14 
GeneralRe: Templates and protected members Pin
JKallen20-Aug-06 8:32
JKallen20-Aug-06 8:32 
GeneralRe: Templates and protected members [modified] Pin
Justin Tay20-Aug-06 8:41
Justin Tay20-Aug-06 8:41 
GeneralRe: Templates and protected members [modified] Pin
JKallen20-Aug-06 9:11
JKallen20-Aug-06 9:11 
GeneralRe: Templates and protected members Pin
jk chan21-Aug-06 18:06
jk chan21-Aug-06 18:06 
AnswerRe: Templates and protected members Pin
Michael Dunn20-Aug-06 10:46
sitebuilderMichael Dunn20-Aug-06 10:46 
Questionios::nocreate and acces modifiers (2) Pin
jon-8020-Aug-06 7:32
professionaljon-8020-Aug-06 7:32 
AnswerRe: ios::nocreate and acces modifiers (2) [modified] Pin
Waldermort20-Aug-06 7:58
Waldermort20-Aug-06 7:58 
ios::nocreate and ios::noreplace are very pre standard C++, they were too platform specific and never made it into the new standard. You will find them in the old <fstream.h> headers as opposed to your <fstream> header. Your out of luck, try validating the file yourself.

fstream fs(“fname”, ios_base::in);// attempt open for read
if (!fs)
{
// file doesn't exist; don't create a new one
}
else //ok, file exists. close and reopen in write mode
{
fs.close();
fs.open(“fname”, ios_base::out); // reopen for write
}



-- modified at 13:59 Sunday 20th August, 2006
Questionios::nocreate Pin
jon-8020-Aug-06 7:01
professionaljon-8020-Aug-06 7:01 
AnswerRe: ios::nocreate Pin
Bob X20-Aug-06 10:00
Bob X20-Aug-06 10:00 
AnswerRe: ios::nocreate Pin
jon-8020-Aug-06 10:18
professionaljon-8020-Aug-06 10:18 
GeneralRe: ios::nocreate [modified] Pin
Bob X20-Aug-06 16:48
Bob X20-Aug-06 16:48 
Questionomanip... was this class superseded in vs2003? Pin
jon-8020-Aug-06 6:54
professionaljon-8020-Aug-06 6:54 
AnswerRe: omanip... was this class superseded in vs2003? Pin
Christian Graus20-Aug-06 11:16
protectorChristian Graus20-Aug-06 11:16 
GeneralRe: omanip... was this class superseded in vs2003? Pin
jon-8021-Aug-06 5:05
professionaljon-8021-Aug-06 5:05 
Questionhow to control windows explorer ? Pin
Kriptoz20-Aug-06 6:42
Kriptoz20-Aug-06 6:42 
AnswerRe: how to control windows explorer ? Pin
Waldermort20-Aug-06 7:28
Waldermort20-Aug-06 7:28 
Questionhow to get the following info. from a thread Pin
zhijia.yuan20-Aug-06 6:38
zhijia.yuan20-Aug-06 6:38 
AnswerRe: how to get the following info. from a thread Pin
Michael Dunn20-Aug-06 6:51
sitebuilderMichael Dunn20-Aug-06 6:51 
AnswerRe: how to get the following info. from a thread Pin
Hamid_RT22-Aug-06 7:27
Hamid_RT22-Aug-06 7:27 
Questionstack around the variable 'values' was corrupted Pin
jon-8020-Aug-06 6:01
professionaljon-8020-Aug-06 6:01 
AnswerRe: stack around the variable 'values' was corrupted Pin
Michael Dunn20-Aug-06 6:06
sitebuilderMichael Dunn20-Aug-06 6:06 
GeneralRe: stack around the variable 'values' was corrupted Pin
jon-8020-Aug-06 10:22
professionaljon-8020-Aug-06 10:22 
GeneralRe: stack around the variable 'values' was corrupted Pin
Michael Dunn20-Aug-06 10:35
sitebuilderMichael Dunn20-Aug-06 10:35 
GeneralRe: stack around the variable 'values' was corrupted Pin
jon-8020-Aug-06 13:38
professionaljon-8020-Aug-06 13:38 

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.