How can I make my app just multiple dialogs instead of just the one that is defined in enum { IDD = * } ? I want to make it so that the window (the displayed dialog ;-)) changes when you press a button in the toolbar.... Any help is very welcome :)
How can I make my app just multiple dialogs instead of just the one that is defined in enum { IDD = * } ? I want to make it so that the window (the displayed dialog ;-)) changes when you press a button in the toolbar.... Any help is very welcome :)
You'll need to create a seperate CDialogImpl derived class for each dialog and then call them using the DoModal function, or hide the current window and show the new dialog. Michael CP Blog [^]