Click here to Skip to main content
15,886,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralCustomize SHBrowseForFolder dialog Pin
Mav Rossi18-Nov-02 22:59
Mav Rossi18-Nov-02 22:59 
GeneralRe: Customize SHBrowseForFolder dialog Pin
Jason Henderson19-Nov-02 4:38
Jason Henderson19-Nov-02 4:38 
GeneralToolbar Bitmaps in popup menus Pin
Mr Bose Dayala18-Nov-02 22:45
Mr Bose Dayala18-Nov-02 22:45 
GeneralPrecompil me Pin
Anonymous18-Nov-02 20:34
Anonymous18-Nov-02 20:34 
GeneralRe: Precompil me Pin
567890123418-Nov-02 22:45
567890123418-Nov-02 22:45 
GeneralMemory leaks Pin
Rickard Andersson2018-Nov-02 20:28
Rickard Andersson2018-Nov-02 20:28 
GeneralRe: Memory leaks Pin
jhwurmbach18-Nov-02 20:49
jhwurmbach18-Nov-02 20:49 
GeneralRe: Memory leaks Pin
ihaml18-Nov-02 21:10
ihaml18-Nov-02 21:10 
In debug mode you can see the memory leaks only if you have created your application using the wizard and MFC.

Not everybody uses MFC and/or the built-in wizards.

What you have to do is either something like:
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

Which is done automatically in MFC and WIZARDS.

Or you could overide the new/delete (and their array versions) and provide your own memory leak checks.
GeneralRe: Memory leaks Pin
jhwurmbach18-Nov-02 21:39
jhwurmbach18-Nov-02 21:39 
GeneralRe: Memory leaks Pin
Rickard Andersson2019-Nov-02 0:43
Rickard Andersson2019-Nov-02 0:43 
GeneralRe: Memory leaks Pin
Anonymous18-Nov-02 21:15
Anonymous18-Nov-02 21:15 
GeneralRe: Memory leaks Pin
Michael P Butler18-Nov-02 22:25
Michael P Butler18-Nov-02 22:25 
GeneralRe: Memory leaks Pin
Rickard Andersson2019-Nov-02 0:48
Rickard Andersson2019-Nov-02 0:48 
GeneralCSliderCtrl.... Pin
Neha18-Nov-02 19:54
Neha18-Nov-02 19:54 
GeneralStealth in VC++ Pin
SatyaKiran18-Nov-02 19:26
SatyaKiran18-Nov-02 19:26 
GeneralRe: Stealth in VC++ Pin
Christian Graus18-Nov-02 19:47
protectorChristian Graus18-Nov-02 19:47 
GeneralRe: Stealth in VC++ Pin
Swinefeaster18-Nov-02 20:20
Swinefeaster18-Nov-02 20:20 
GeneralRe: Stealth in VC++ Pin
Anonymous18-Nov-02 21:12
Anonymous18-Nov-02 21:12 
GeneralRe: Stealth in VC++ Pin
Michael P Butler18-Nov-02 22:22
Michael P Butler18-Nov-02 22:22 
General.NET Training School in Bay area Pin
ReachAnshul18-Nov-02 17:55
ReachAnshul18-Nov-02 17:55 
GeneralJava in comparison to C++ Question Pin
Swinefeaster18-Nov-02 17:51
Swinefeaster18-Nov-02 17:51 
GeneralRe: Java in comparison to C++ Question Pin
Christian Graus18-Nov-02 17:58
protectorChristian Graus18-Nov-02 17:58 
GeneralRe: Java in comparison to C++ Question Pin
Swinefeaster18-Nov-02 18:00
Swinefeaster18-Nov-02 18:00 
GeneralRe: Java in comparison to C++ Question Pin
Christian Graus18-Nov-02 18:12
protectorChristian Graus18-Nov-02 18:12 
GeneralRe: Java in comparison to C++ Question Pin
Swinefeaster18-Nov-02 18:16
Swinefeaster18-Nov-02 18:16 

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.