Click here to Skip to main content
15,905,867 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionmodeless dialogs - ownmessage queue ? Pin
rrrado26-Jan-04 21:44
rrrado26-Jan-04 21:44 
AnswerRe: modeless dialogs - ownmessage queue ? Pin
Diddy27-Jan-04 0:11
Diddy27-Jan-04 0:11 
GeneralRe: modeless dialogs - ownmessage queue ? Pin
rrrado27-Jan-04 0:47
rrrado27-Jan-04 0:47 
QuestionHow to get CurrentDir of an application running in Embedded Visual C? Pin
ntnhan26-Jan-04 21:31
ntnhan26-Jan-04 21:31 
AnswerRe: How to get CurrentDir of an application running in Embedded Visual C? Pin
Michael P Butler27-Jan-04 1:57
Michael P Butler27-Jan-04 1:57 
GeneralUtility for checking dependencies Pin
rajeev26-Jan-04 21:31
rajeev26-Jan-04 21:31 
Generalmemory leak debugger Pin
Gérald Mercet26-Jan-04 21:16
Gérald Mercet26-Jan-04 21:16 
GeneralRe: memory leak debugger Pin
J. Eric Vaughan27-Jan-04 3:16
J. Eric Vaughan27-Jan-04 3:16 
If your app uses MFC, you can use the DEBUG_NEW macro, and memory leaks will be outputted to your Output windows in Visual Studio. This even tells you the line of code where the object was "new"ed.

At top of all .cpp files:

#ifdef _DEBUG
  #define new DEBUG_NEW
  #undef THIS_FILE
  static char THIS_FILE[] = __FILE__;
#endif

Generaldifference between CSocket and CAsynSocket Recieve Call Pin
Atif Mushtaq26-Jan-04 20:20
Atif Mushtaq26-Jan-04 20:20 
GeneralRe: difference between CSocket and CAsynSocket Recieve Call Pin
RobJones27-Jan-04 3:03
RobJones27-Jan-04 3:03 
GeneralRe: difference between CSocket and CAsynSocket Recieve Call Pin
Atif Mushtaq27-Jan-04 18:16
Atif Mushtaq27-Jan-04 18:16 
GeneralRe: difference between CSocket and CAsynSocket Recieve Call Pin
RobJones28-Jan-04 3:04
RobJones28-Jan-04 3:04 
GeneralRe: difference between CSocket and CAsynSocket Recieve Call Pin
RobJones28-Jan-04 3:59
RobJones28-Jan-04 3:59 
GeneralRe: difference between CSocket and CAsynSocket Recieve Call Pin
Atif Mushtaq28-Jan-04 5:16
Atif Mushtaq28-Jan-04 5:16 
GeneralRe: difference between CSocket and CAsynSocket Recieve Call Pin
Xiangyang Liu 刘向阳28-Jan-04 7:02
Xiangyang Liu 刘向阳28-Jan-04 7:02 
GeneralWindows hooks Pin
Abhi Lahare26-Jan-04 18:43
Abhi Lahare26-Jan-04 18:43 
GeneralEdit boxes Pin
calebcohoon26-Jan-04 17:18
calebcohoon26-Jan-04 17:18 
GeneralRe: Edit boxes Pin
P-Rex26-Jan-04 20:59
P-Rex26-Jan-04 20:59 
GeneralRe: Edit boxes Pin
Robert A. T. Káldy27-Jan-04 0:24
Robert A. T. Káldy27-Jan-04 0:24 
GeneralRe: Edit boxes Pin
calebcohoon27-Jan-04 5:40
calebcohoon27-Jan-04 5:40 
GeneralFinding version info of a DLL Pin
haritadala26-Jan-04 17:13
haritadala26-Jan-04 17:13 
GeneralRe: Finding version info of a DLL Pin
Tim Smith26-Jan-04 17:26
Tim Smith26-Jan-04 17:26 
GeneralRe: Finding version info of a DLL Pin
Anonymous26-Jan-04 17:29
Anonymous26-Jan-04 17:29 
GeneralRe: Finding version info of a DLL Pin
haritadala27-Jan-04 3:51
haritadala27-Jan-04 3:51 
GeneralRe: Finding version info of a DLL Pin
Tim Smith27-Jan-04 4:18
Tim Smith27-Jan-04 4:18 

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.