EnableWindow
C / C++ / MFC
4
Posts
3
Posters
0
Views
1
Watching
-
Hi, Does making a window disabled, make it disappear from the"Alt+Tab" list? If I do a EnableWindow(FALSE) in a dialog based application, I cannot see it in the Alt+Tab list. Can this be prevented? Thanks....
-
Hi, Does making a window disabled, make it disappear from the"Alt+Tab" list? If I do a EnableWindow(FALSE) in a dialog based application, I cannot see it in the Alt+Tab list. Can this be prevented? Thanks....
The windows in the task list, as it's more correctly called, meet the following criteria:
- No parent
- Visible
- No owner and WS_EX_TOOLWINDOW, OR Owner and WS_EX_APPWINDOW
- At least one character of text
Peter O.
-
The windows in the task list, as it's more correctly called, meet the following criteria:
- No parent
- Visible
- No owner and WS_EX_TOOLWINDOW, OR Owner and WS_EX_APPWINDOW
- At least one character of text
Peter O.