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

C / C++ / MFC

 
GeneralRe: Change the CEdit caret Pin
Eugene Pustovoyt9-Sep-02 2:14
Eugene Pustovoyt9-Sep-02 2:14 
QuestionMemory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 1:12
Jawache9-Sep-02 1:12 
AnswerRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 1:25
Tomasz Sowinski9-Sep-02 1:25 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 1:39
Jawache9-Sep-02 1:39 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 1:46
Tomasz Sowinski9-Sep-02 1:46 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 2:09
Jawache9-Sep-02 2:09 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 2:11
Tomasz Sowinski9-Sep-02 2:11 
AnswerRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Roger Allen9-Sep-02 1:49
Roger Allen9-Sep-02 1:49 
Are you using serialization on some of these objects? If you are then you can get memory leaks by using serialization with pointers like this.

CMyObject *pObject = new CMyObject ;

archive >> pMyObject ; // leak! as CObject create a new object losing the earlier allocated object.
This can be seen in the debugger by stepping over the seriazation line and seeing that the pMyObject pointer value changes.




Roger Allen
Sonork 100.10016

I think I need a new quote, I am on the prowl, so look out for a soft cute furry looking animal, which is really a Hippo in disguise. Its probably me.
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 1:56
Jawache9-Sep-02 1:56 
AnswerRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Pavel Klocek9-Sep-02 1:52
Pavel Klocek9-Sep-02 1:52 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 1:59
Jawache9-Sep-02 1:59 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 2:07
Tomasz Sowinski9-Sep-02 2:07 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 2:13
Jawache9-Sep-02 2:13 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 2:19
Tomasz Sowinski9-Sep-02 2:19 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 2:22
Jawache9-Sep-02 2:22 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 2:26
Tomasz Sowinski9-Sep-02 2:26 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 2:39
Jawache9-Sep-02 2:39 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 2:43
Tomasz Sowinski9-Sep-02 2:43 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 2:53
Jawache9-Sep-02 2:53 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 2:55
Tomasz Sowinski9-Sep-02 2:55 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 3:36
Jawache9-Sep-02 3:36 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 3:49
Tomasz Sowinski9-Sep-02 3:49 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 4:08
Jawache9-Sep-02 4:08 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Tomasz Sowinski9-Sep-02 4:12
Tomasz Sowinski9-Sep-02 4:12 
GeneralRe: Memory Leaks in IMPLEMENT_DYNCREATE?!?!?!? Pin
Jawache9-Sep-02 4:33
Jawache9-Sep-02 4:33 

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.