Modal dialog removes my App from Alt+Tab windows...
-
I have a MDI application whenever I am opening a modal dialog box which is a child of a MDI window, my application seems to be lost from the Alt+Tab program list of Windows? I am using WinAPI and DialogBoxParam() function to create the dialog. Why is it happening? Any ideas how to resolve it.
-
I have a MDI application whenever I am opening a modal dialog box which is a child of a MDI window, my application seems to be lost from the Alt+Tab program list of Windows? I am using WinAPI and DialogBoxParam() function to create the dialog. Why is it happening? Any ideas how to resolve it.
Shouldn't the modal dialog be a child of the main app window? The parent window should be AfxGetApp()->m_pMainWnd. onwards and upwards...
-
Shouldn't the modal dialog be a child of the main app window? The parent window should be AfxGetApp()->m_pMainWnd. onwards and upwards...
I am using Win32 API's. You mean to say that instead of sending the MDI Child Window as Parent for the dialog I send the Main App Window handle as the parent.
-
Shouldn't the modal dialog be a child of the main app window? The parent window should be AfxGetApp()->m_pMainWnd. onwards and upwards...
Well...I tried changing the parent window but its not working. It seems that whenever I am doing Alt+Tab, both the dialog window and the main app window loses focus and perhaps that is causing the problem.....
-
Well...I tried changing the parent window but its not working. It seems that whenever I am doing Alt+Tab, both the dialog window and the main app window loses focus and perhaps that is causing the problem.....
Well....the app is there if I switch between apps 1-2 times...then its GONE!!!!