scottmanjoe
Technical User
Hi,
These are elements of my dialog based application-
CSetupDlg : CDialog
CMainSheet : CPropertySheet
CPage1 : CPropertyPage
CPage2 : CPropertyPage
Cpage1 and CPage2 are the Pages of the PropertySheet CMainSheet.
The following is called to invoke PropertySheet from CSetupDlg:
////////////////
CMainSheet m_sheetMainPage(strCaption);//
ShowWindow(SW_HIDE);
m_sheetMainPage.DoModal();
////////////////
Now the PropertySheet with the corresponding PropertyPages are displayed._BUT_
Problem:
--------
When I deactivate the PropertySheet window(for ex. by clicking on other windows), the PropertySheet window is not shown in task-bar(it actually shud be shown as a minimized window). Only when I use (ALT+TAB), I am able to again setFocus on that window and invoke it.
Can anyone please suggest anything so that the Window is enabled and available at the task-bar even after out of focus?
Thanks,
Scott
These are elements of my dialog based application-
CSetupDlg : CDialog
CMainSheet : CPropertySheet
CPage1 : CPropertyPage
CPage2 : CPropertyPage
Cpage1 and CPage2 are the Pages of the PropertySheet CMainSheet.
The following is called to invoke PropertySheet from CSetupDlg:
////////////////
CMainSheet m_sheetMainPage(strCaption);//
ShowWindow(SW_HIDE);
m_sheetMainPage.DoModal();
////////////////
Now the PropertySheet with the corresponding PropertyPages are displayed._BUT_
Problem:
--------
When I deactivate the PropertySheet window(for ex. by clicking on other windows), the PropertySheet window is not shown in task-bar(it actually shud be shown as a minimized window). Only when I use (ALT+TAB), I am able to again setFocus on that window and invoke it.
Can anyone please suggest anything so that the Window is enabled and available at the task-bar even after out of focus?
Thanks,
Scott