Click here to Skip to main content
15,914,165 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: problem with MessageBox Pin
doneirik10-Mar-05 3:33
doneirik10-Mar-05 3:33 
GeneralRe: problem with MessageBox Pin
Steen Krogsgaard10-Mar-05 4:16
Steen Krogsgaard10-Mar-05 4:16 
QuestionHow to get a pointers data type? Pin
Gadjuka10-Mar-05 2:44
Gadjuka10-Mar-05 2:44 
AnswerRe: How to get a pointers data type? Pin
Steen Krogsgaard10-Mar-05 3:43
Steen Krogsgaard10-Mar-05 3:43 
GeneralRe: How to get a pointers data type? Pin
Gadjuka10-Mar-05 5:13
Gadjuka10-Mar-05 5:13 
AnswerRe: How to get a pointers data type? Pin
PJ Arends10-Mar-05 16:54
professionalPJ Arends10-Mar-05 16:54 
GeneralRe: How to get a pointers data type? Pin
Gadjuka10-Mar-05 22:40
Gadjuka10-Mar-05 22:40 
GeneralRe: How to get a pointers data type? Pin
PJ Arends11-Mar-05 10:21
professionalPJ Arends11-Mar-05 10:21 
Ok, a polymorphic type is a class or struct that has virtual functions. The easiest way to make your node struct polymorhic is to add a virtual destructor
struct node
{
   string label;
   node *next;
   virtual ~node() {};
};
You will also have to enable RTTI (run time type information) by setting the /GR compiler option (may already be done).



"You're obviously a superstar." - Christian Graus about me - 12 Feb '03

"Obviously ???  You're definitely a superstar!!!" mYkel - 21 Jun '04

Within you lies the power for good - Use it!
Honoured as one of The Most Helpful Members of 2004

QuestionTemporary Internet Files ? Pin
Larsson10-Mar-05 2:42
Larsson10-Mar-05 2:42 
AnswerRe: Temporary Internet Files ? Pin
ThatsAlok10-Mar-05 2:51
ThatsAlok10-Mar-05 2:51 
GeneralRe: Temporary Internet Files ? Pin
Larsson10-Mar-05 2:58
Larsson10-Mar-05 2:58 
GeneralRe: Temporary Internet Files ? Pin
Larsson10-Mar-05 3:20
Larsson10-Mar-05 3:20 
GeneralRe: Temporary Internet Files ? Pin
David Crow10-Mar-05 5:00
David Crow10-Mar-05 5:00 
GeneralRe: Temporary Internet Files ? Pin
ThatsAlok10-Mar-05 19:26
ThatsAlok10-Mar-05 19:26 
GeneralRe: Temporary Internet Files ? Pin
Larsson11-Mar-05 23:04
Larsson11-Mar-05 23:04 
GeneralNMSMTP component C++ builder 6 Pin
PhilWalker10-Mar-05 2:41
PhilWalker10-Mar-05 2:41 
QuestionIs this a Memory Issue? Pin
brdavid10-Mar-05 2:38
brdavid10-Mar-05 2:38 
AnswerRe: Is this a Memory Issue? Pin
Serge Krynine10-Mar-05 12:10
Serge Krynine10-Mar-05 12:10 
GeneralRe: Is this a Memory Issue? Pin
brdavid11-Mar-05 4:04
brdavid11-Mar-05 4:04 
GeneralUSB driver Pin
SJolly10-Mar-05 2:01
SJolly10-Mar-05 2:01 
GeneralRe: USB driver Pin
Alexander M.,10-Mar-05 2:13
Alexander M.,10-Mar-05 2:13 
GeneralRe: USB driver Pin
SJolly10-Mar-05 2:19
SJolly10-Mar-05 2:19 
GeneralRe: USB driver Pin
Branislav11-Mar-05 19:20
Branislav11-Mar-05 19:20 
QuestionHow to send an SIP response ? Please help Pin
Raghav SR10-Mar-05 1:54
Raghav SR10-Mar-05 1:54 
Generalto the C gurus (malloc,realloc) Pin
ThinkingPrometheus10-Mar-05 1:40
ThinkingPrometheus10-Mar-05 1:40 

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.