Icon in taskbar for regular windows
How can I cause MFC windows ( inherited from CWnd) to show an icon in the taskbar as if they were application's main window.So I can switch between windows in the same application by clicking on the icon in the taskbar.
If it is not a capability of MFC how can I do that with regular Win32 API ?
Thanking you in advance: Uzi Kohn
Re: Icon in taskbar for regular windows
I have found the answer:
It is an extended style for a window which is called: WS_EX_APPWINDOW , so when using CreateEx for windows -> use this style
Uzi Kohn