How do I prevent my application showing a button on the taskbar?
C / C++ / MFC
4
Posts
4
Posters
0
Views
1
Watching
-
See this article. /ravi Let's put "civil" back into "civilization" http://www.ravib.com ravib@ravib.com
-
Check out the style WS_EX_TOOLWINDOW. But this creates a smaller title bar. [edit] Check out http://msdn.microsoft.com/msdnmag/issues/0500/c/c0500.asp Jignesh
-
Simply remove the WS_EX_APPWINDOW style from your window. MFC: pWnd->ModifyStyleEx(WS_EX_APPWINDOW, 0); Win32 API: LONG lStyle = ::GetWindowLong(hWnd, GWL_EXSTYLE); lStyle &= ~WS_EX_APPWINDOW; ::SetWindowLong(hWnd, GWL_EXSTYLE, lStyle);
Build a man a fire, and he will be warm for a day
Light a man on fire, and he will be warm for the rest of his life!