I\'m working on an MFC Visual C++ project. As I understand from MSDN, _CrtDumpMemoryLeaks() should return TRUE when there are memory leaks.
I am registering my Class in the following method: BOOL CNDSClientDlg::InitInstance() { //Register Window Updated on 16th Nov 2010, @Subhen
how do I set a value 开发者_开发问答of a textbox in Visual C++? I have been trying the following but the line strTemp.Format(\"%d\", nNbr); does not compile
I have a dialog box with a check-box and a button. I want to make the button ena开发者_如何学JAVAbled/disabled depending on the state of the check-box.
I am creating an MFC application which will be launched on click on Explorer Context (Rightclick) menu.
If I have two applications running simultaneously , App1.exe and App2.exe , I want to开发者_StackOverflow中文版 bring App2.exe when a button in App1.exe is pressed.
I\'m using MFC, and I\'m trying to draw an image to the screen.I\'ve got the following OnDraw function:
So the console application works fine as a console application. Now I created a MFC GUI application and the dialog itself works fine. When i add the console application files to the MFC project, it co
Does anyone know where is the best place to forward thread messages to child controls? Basically, app has to catch registered thread messages in range msg_frst...msg_last and forward them to active f
i have created one method to write to Log file but each time it overrite the log details , i want to create a new entry everytime for logging details.My log method is as below :