Click here to Skip to main content
16,011,358 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Comparing Strings. Pin
Jim Howard22-Jun-01 6:02
Jim Howard22-Jun-01 6:02 
GeneralRe: Comparing Strings. Pin
John Uhlenbrock22-Jun-01 6:41
John Uhlenbrock22-Jun-01 6:41 
GeneralRe: Comparing Strings. Pin
Jim Howard22-Jun-01 7:08
Jim Howard22-Jun-01 7:08 
GeneralRe: Comparing Strings. Pin
Tomasz Sowinski22-Jun-01 7:18
Tomasz Sowinski22-Jun-01 7:18 
GeneralDooh! Pin
Jim Howard22-Jun-01 8:12
Jim Howard22-Jun-01 8:12 
QuestionHow to handle the ChildFrames ? Pin
Radovan L.22-Jun-01 5:49
Radovan L.22-Jun-01 5:49 
GeneralMemory Leak Pin
Nitish Kumar22-Jun-01 5:42
Nitish Kumar22-Jun-01 5:42 
GeneralRe: Memory Leak Pin
Malcolm McMahon22-Jun-01 6:03
Malcolm McMahon22-Jun-01 6:03 
It's telling you you created heap objects and never deleted them. For every new that's executed there needs to be a delete.

You may need to add destructors to some of your classes to delete anything the class allocates.

Think about the lifetime of everything you create with new. Are you overwriting the only pointer to an object (orphaning it)?

GeneralRe: Memory Leak Pin
Tim Deveaux22-Jun-01 6:42
Tim Deveaux22-Jun-01 6:42 
Generalremember Pin
Amit Jain22-Jun-01 7:51
Amit Jain22-Jun-01 7:51 
GeneralRe: remember Pin
Malcolm McMahon25-Jun-01 4:48
Malcolm McMahon25-Jun-01 4:48 
GeneralRe: remember Pin
Amit Jain25-Jun-01 5:30
Amit Jain25-Jun-01 5:30 
GeneralRe: remember Pin
Malcolm McMahon25-Jun-01 6:09
Malcolm McMahon25-Jun-01 6:09 
Generalyupyup Pin
Amit Jain25-Jun-01 7:23
Amit Jain25-Jun-01 7:23 
GeneralRe: yupyup Pin
Malcolm McMahon26-Jun-01 3:23
Malcolm McMahon26-Jun-01 3:23 
GeneralRe: yupyup Pin
Tomasz Sowinski26-Jun-01 3:36
Tomasz Sowinski26-Jun-01 3:36 
GeneralRe: yupyup Pin
Malcolm McMahon26-Jun-01 5:05
Malcolm McMahon26-Jun-01 5:05 
GeneralVC++ COM and ASP stuff Pin
lea22-Jun-01 4:58
lea22-Jun-01 4:58 
GeneralRe: VC++ COM and ASP stuff Pin
Carlos Antollini22-Jun-01 5:26
Carlos Antollini22-Jun-01 5:26 
GeneralRe: VC++ COM and ASP stuff Pin
lea22-Jun-01 5:42
lea22-Jun-01 5:42 
GeneralRe: VC++ COM and ASP stuff Pin
Carlos Antollini22-Jun-01 6:22
Carlos Antollini22-Jun-01 6:22 
GeneralRe: VC++ COM and ASP stuff Pin
lea25-Jun-01 4:36
lea25-Jun-01 4:36 
GeneralRe: VC++ COM and ASP stuff Pin
lea25-Jun-01 4:36
lea25-Jun-01 4:36 
Generallogging method arguments Pin
Brian van der Beek22-Jun-01 4:24
Brian van der Beek22-Jun-01 4:24 
GeneralRe: logging method arguments Pin
Tomasz Sowinski22-Jun-01 4:34
Tomasz Sowinski22-Jun-01 4:34 

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.