Click here to Skip to main content
15,912,837 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Problems Pin
mikobi22-Jun-07 22:55
mikobi22-Jun-07 22:55 
GeneralRe: Problems Pin
Hamid_RT23-Jun-07 1:35
Hamid_RT23-Jun-07 1:35 
QuestionInfinite While Loop! Pin
EngMohab22-Jun-07 21:26
EngMohab22-Jun-07 21:26 
AnswerRe: Infinite While Loop! Pin
Mark Salsbery23-Jun-07 8:11
Mark Salsbery23-Jun-07 8:11 
QuestionProgress control in list view Pin
neha.agarwal2722-Jun-07 21:23
neha.agarwal2722-Jun-07 21:23 
QuestionWindows Blinds... Pin
Polite Programmer22-Jun-07 21:09
Polite Programmer22-Jun-07 21:09 
Questiondestructor Pin
deeps_cute22-Jun-07 20:59
deeps_cute22-Jun-07 20:59 
AnswerRe: destructor Pin
Mark Salsbery23-Jun-07 8:24
Mark Salsbery23-Jun-07 8:24 
What error?

You should be able to add the declaration for the destructor to the class:

class CmydialoDlg : public CDialog
{
public:
virtual ~CmydialoDlg();
};

and implement the destructor:

CmydialoDlg::~CmydialoDlg()
{
// destruct stuff here
}




"I'm the Dude. So that's what you call me. You know, that or, uh, His Dudeness, or uh, Duder, or El Duderino if you're not into the whole brevity thing." The Big Lebowski

Questionprint problem Pin
Y_Kaushik22-Jun-07 20:43
Y_Kaushik22-Jun-07 20:43 
AnswerRe: print problem Pin
MANISH RASTOGI22-Jun-07 21:58
MANISH RASTOGI22-Jun-07 21:58 
GeneralRe: print problem Pin
Y_Kaushik22-Jun-07 22:09
Y_Kaushik22-Jun-07 22:09 
QuestionInstaller created shortcut Pin
rp_suman22-Jun-07 16:41
rp_suman22-Jun-07 16:41 
QuestionQueryPerformanceCounter - unreliable timing on win32 but perfect on x64 [modified] Pin
Cyrilix22-Jun-07 16:34
Cyrilix22-Jun-07 16:34 
QuestionHow to share a class between different projects in VC++? Pin
Skywalker200822-Jun-07 11:34
Skywalker200822-Jun-07 11:34 
AnswerRe: How to share a class between different projects in VC++? Pin
Hans Dietrich22-Jun-07 12:10
mentorHans Dietrich22-Jun-07 12:10 
GeneralRe: How to share a class between different projects in VC++? Pin
Cyrilix22-Jun-07 12:32
Cyrilix22-Jun-07 12:32 
GeneralRe: How to share a class between different projects in VC++? Pin
Mark Salsbery22-Jun-07 12:50
Mark Salsbery22-Jun-07 12:50 
GeneralRe: How to share a class between different projects in VC++? Pin
Cyrilix22-Jun-07 14:00
Cyrilix22-Jun-07 14:00 
GeneralRe: How to share a class between different projects in VC++? Pin
Mark Salsbery22-Jun-07 14:06
Mark Salsbery22-Jun-07 14:06 
GeneralRe: How to share a class between different projects in VC++? Pin
Skywalker200825-Jun-07 2:50
Skywalker200825-Jun-07 2:50 
QuestionHow to load a BMP from a resource dll Pin
sstainba22-Jun-07 10:07
sstainba22-Jun-07 10:07 
AnswerRe: How to load a BMP from a resource dll Pin
Mark Salsbery22-Jun-07 10:25
Mark Salsbery22-Jun-07 10:25 
GeneralRe: How to load a BMP from a resource dll Pin
sstainba22-Jun-07 11:22
sstainba22-Jun-07 11:22 
GeneralRe: How to load a BMP from a resource dll Pin
Mark Salsbery22-Jun-07 12:26
Mark Salsbery22-Jun-07 12:26 
GeneralRe: How to load a BMP from a resource dll Pin
sstainba22-Jun-07 12:32
sstainba22-Jun-07 12:32 

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.