Howto know when a dialog ends
-
I got a base-class derived from CDialog. There are multiple dialogs derived from that base-class. All dialogs that derive from that base class have to do some special handling while they are the top-most dialog. From the moment a new dialog is started from within the derived class , that handling has to stop, and start again when the new dialog ends. So my question: How can I know in the base-class dialog when a new dialog was started (by the derived class), and when that new dialog was ended? Greetings, Davy
-
I got a base-class derived from CDialog. There are multiple dialogs derived from that base-class. All dialogs that derive from that base class have to do some special handling while they are the top-most dialog. From the moment a new dialog is started from within the derived class , that handling has to stop, and start again when the new dialog ends. So my question: How can I know in the base-class dialog when a new dialog was started (by the derived class), and when that new dialog was ended? Greetings, Davy
Overwrite Create in base class...:| NG
-
Overwrite Create in base class...:| NG
-
Thx for the reply. But that won't do. The new dialog that is started isn't necessarily derived from that special base-class dialog...