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

C / C++ / MFC

 
GeneralRe: Dialog bo shouldn't show up.. Pin
Stephen Hewitt10-Apr-08 22:39
Stephen Hewitt10-Apr-08 22:39 
GeneralRe: Dialog bo shouldn't show up.. Pin
David Crow11-Apr-08 5:14
David Crow11-Apr-08 5:14 
GeneralRe: Dialog bo shouldn't show up.. Pin
Hamid_RT12-Apr-08 5:34
Hamid_RT12-Apr-08 5:34 
GeneralEditor Pin
suhi10-Apr-08 18:00
suhi10-Apr-08 18:00 
QuestionRe: Editor Pin
David Crow11-Apr-08 5:23
David Crow11-Apr-08 5:23 
Generalmessage pump code for COM STA Pin
George_George10-Apr-08 16:21
George_George10-Apr-08 16:21 
GeneralRe: message pump code for COM STA Pin
Stephen Hewitt10-Apr-08 17:27
Stephen Hewitt10-Apr-08 17:27 
GeneralRe: message pump code for COM STA Pin
George_George10-Apr-08 19:06
George_George10-Apr-08 19:06 
GeneralRe: message pump code for COM STA Pin
Stephen Hewitt10-Apr-08 19:08
Stephen Hewitt10-Apr-08 19:08 
GeneralRe: message pump code for COM STA Pin
George_George10-Apr-08 19:10
George_George10-Apr-08 19:10 
Generalassign none to COM thread model Pin
George_George10-Apr-08 15:51
George_George10-Apr-08 15:51 
GeneralRe: assign none to COM thread model Pin
Stephen Hewitt10-Apr-08 17:31
Stephen Hewitt10-Apr-08 17:31 
GeneralRe: assign none to COM thread model Pin
George_George10-Apr-08 19:09
George_George10-Apr-08 19:09 
GeneralRe: assign none to COM thread model Pin
Stephen Hewitt10-Apr-08 19:10
Stephen Hewitt10-Apr-08 19:10 
GeneralRe: assign none to COM thread model Pin
George_George10-Apr-08 19:15
George_George10-Apr-08 19:15 
GeneralMSXML deployment Pin
Dave Calkins10-Apr-08 12:53
Dave Calkins10-Apr-08 12:53 
GeneralRe: MSXML deployment [modified] Pin
bob1697211-Apr-08 18:47
bob1697211-Apr-08 18:47 
GeneralRemovePreviousVersions VS 2008 leaves previous version untouched Pin
ravenspoint10-Apr-08 8:08
ravenspoint10-Apr-08 8:08 
GeneralRe: RemovePreviousVersions VS 2008 leaves previous version untouched Pin
ravenspoint23-Apr-08 4:25
ravenspoint23-Apr-08 4:25 
QuestionHow to create shiny silver color for the background of the MFC dialog?? Pin
johndoelee10-Apr-08 5:31
johndoelee10-Apr-08 5:31 
GeneralRe: How to create shiny silver color for the background of the MFC dialog?? Pin
David Crow10-Apr-08 5:35
David Crow10-Apr-08 5:35 
GeneralRe: How to create shiny silver color for the background of the MFC dialog?? Pin
Hamid_RT12-Apr-08 5:32
Hamid_RT12-Apr-08 5:32 
QuestionStick with Crystal Reports of look for alternatives? Pin
Anders Gustafsson10-Apr-08 5:30
Anders Gustafsson10-Apr-08 5:30 
GeneralCList destructor Pin
piul10-Apr-08 4:59
piul10-Apr-08 4:59 
I am using a CList to store pointers to variables in the heap.
typedef CList < int*, int* > CIntList ;
//...
int * pInt = new int ;
CIntList * pList = new CIntList ;
pList->AddTail(pInt) ;
//...
delete pList ;


Does anybody know if deleting pList frees all the allocated memory? that is, do the pInt pointers get deleted as well or it has to be done somewhere else?

I might as well use a CList < int&, int& > CIntList anyway...

Thank you!
GeneralRe: CList destructor Pin
Cedric Moonen10-Apr-08 5:03
Cedric Moonen10-Apr-08 5: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.