Click here to Skip to main content
15,911,762 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Debug Assertion & Combo Box? Pin
Aoife7-May-02 1:16
Aoife7-May-02 1:16 
GeneralRe: Debug Assertion & Combo Box? Pin
Niklas L7-May-02 1:55
Niklas L7-May-02 1:55 
GeneralDevice Drivers Pin
Sameer Maggon7-May-02 0:24
Sameer Maggon7-May-02 0:24 
GeneralRe: Device Drivers Pin
Wolfram Steinke7-May-02 0:34
Wolfram Steinke7-May-02 0:34 
QuestionHow to detect that IE 4.0 Installed? Pin
Alex Cramer6-May-02 23:53
Alex Cramer6-May-02 23:53 
AnswerRe: How to detect that IE 4.0 Installed? Pin
Christian Graus7-May-02 1:17
protectorChristian Graus7-May-02 1:17 
Generalwrite to file Pin
6-May-02 23:44
suss6-May-02 23:44 
GeneralRe: write to file Pin
Maxwell Chen6-May-02 23:59
Maxwell Chen6-May-02 23:59 
To write something to file:

void CTest03Dlg::OnButton1() 
{
	CString	s("Hello test....\n\n");
	
	std::ofstream	f("MyText.txt", std::ios::app | std::ios::out);
	f.write(s.operator LPCTSTR(), s.GetLength());
	f.close();
}


To open the file:
void CTest03Dlg::OnButton2() 
{
	WinExec("Notepad MyText.txt", SW_SHOW);	
}



Maxwell Chen
People say "No news is good news". Then, no code is good code!?
GeneralRe: write to file Pin
7-May-02 5:12
suss7-May-02 5:12 
GeneralRe: write to file Pin
Maxwell Chen7-May-02 15:56
Maxwell Chen7-May-02 15:56 
GeneralGet System Memory Pin
Sameer Maggon6-May-02 23:38
Sameer Maggon6-May-02 23:38 
GeneralRe: Get System Memory Pin
moliate6-May-02 23:57
moliate6-May-02 23:57 
GeneralGet the size of a specified folder Pin
Cheickna6-May-02 23:34
Cheickna6-May-02 23:34 
GeneralRe: Get the size of a specified folder Pin
l a u r e n7-May-02 1:23
l a u r e n7-May-02 1:23 
GeneralRe: Get the size of a specified folder Pin
Carlos Antollini7-May-02 3:21
Carlos Antollini7-May-02 3:21 
QuestionHow to Create new Class in MFC Pin
6-May-02 23:32
suss6-May-02 23:32 
AnswerRe: How to Create new Class in MFC Pin
Eugene Pustovoyt7-May-02 0:22
Eugene Pustovoyt7-May-02 0:22 
QuestionHow do I add a menu to a dialog ? Pin
yarp6-May-02 23:30
yarp6-May-02 23:30 
AnswerRe: How do I add a menu to a dialog ? Pin
Ganesh Ramaswamy7-May-02 0:42
Ganesh Ramaswamy7-May-02 0:42 
GeneralRe: How do I add a menu to a dialog ? Pin
yarp7-May-02 6:28
yarp7-May-02 6:28 
AnswerRe: How do I add a menu to a dialog ? Pin
Michael Martin7-May-02 3:24
professionalMichael Martin7-May-02 3:24 
GeneralRe: How do I add a menu to a dialog ? Pin
yarp7-May-02 6:38
yarp7-May-02 6:38 
GeneralPostMessage Pin
Sameer Maggon6-May-02 22:39
Sameer Maggon6-May-02 22:39 
GeneralRe: PostMessage Pin
PJ Arends6-May-02 22:51
professionalPJ Arends6-May-02 22:51 
GeneralRe: PostMessage Pin
Hans Ruck6-May-02 22:50
Hans Ruck6-May-02 22:50 

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.