tutorial on mutiple Dialog boxs
-
i have read a few tutorials here and have learnt a good bit but im looking for a tutorial on how to create a dialog box which has a button to close/hide that dialog box and show another, so say i have about 4 dialog boxs but only one is showing at a time and others that are hidden can be seen by clicking a button. thx
-
i have read a few tutorials here and have learnt a good bit but im looking for a tutorial on how to create a dialog box which has a button to close/hide that dialog box and show another, so say i have about 4 dialog boxs but only one is showing at a time and others that are hidden can be seen by clicking a button. thx
Do search in Code project(CP). Plenty are available.
Nibu thomas Software Developer
-
i have read a few tutorials here and have learnt a good bit but im looking for a tutorial on how to create a dialog box which has a button to close/hide that dialog box and show another, so say i have about 4 dialog boxs but only one is showing at a time and others that are hidden can be seen by clicking a button. thx
You can show or hide a window by CWnd::ShowWindow (nShow); where nShow is either SW_SHOW or SW_HIDE. You need to use modeless Dialog boxes in order to be able to pass command from one dialog to another. William