Click here to Skip to main content
15,922,574 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to make a Wizard? Pin
Stlan26-Jan-04 22:45
Stlan26-Jan-04 22:45 
AnswerRe: How to make a Wizard? Pin
Joe Woodbury27-Jan-04 5:32
professionalJoe Woodbury27-Jan-04 5:32 
GeneralDLL debugging Pin
JeyKey26-Jan-04 22:12
JeyKey26-Jan-04 22:12 
GeneralRe: DLL debugging Pin
Stlan26-Jan-04 23:01
Stlan26-Jan-04 23:01 
QuestionCould somebody please help??? Pin
Einly26-Jan-04 22:08
Einly26-Jan-04 22:08 
AnswerRe: Could somebody please help??? Pin
Steve S26-Jan-04 22:34
Steve S26-Jan-04 22:34 
GeneralRe: Could somebody please help??? Pin
Einly27-Jan-04 19:06
Einly27-Jan-04 19:06 
GeneralRe: Could somebody please help??? Pin
Einly27-Jan-04 19:06
Einly27-Jan-04 19:06 
GeneralGDI+ : construct Image from an IStream Pin
sstoyan26-Jan-04 21:55
sstoyan26-Jan-04 21:55 
GeneralRe: GDI+ : construct Image from an IStream Pin
Jörgen Sigvardsson27-Jan-04 1:16
Jörgen Sigvardsson27-Jan-04 1:16 
GeneralRe: GDI+ : construct Image from an IStream Pin
sstoyan27-Jan-04 2:18
sstoyan27-Jan-04 2:18 
GeneralRe: GDI+ : construct Image from an IStream Pin
Jörgen Sigvardsson27-Jan-04 10:54
Jörgen Sigvardsson27-Jan-04 10:54 
Generalnope, doesnt work still Pin
sstoyan27-Jan-04 10:48
sstoyan27-Jan-04 10:48 
GeneralRe: nope, doesnt work still Pin
Jörgen Sigvardsson27-Jan-04 10:55
Jörgen Sigvardsson27-Jan-04 10:55 
GeneralRe: nope, doesnt work still Pin
sstoyan27-Jan-04 13:43
sstoyan27-Jan-04 13:43 
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 

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.