12-19-2007, 05:04 PM
1. fixed in place - remove WS_CAPTION style
2. fixed in place but moveable with right button, like toolbars - there is a topic in the forum that shows how to do it
3. stays on top - add WS_EX_TOPMOST or DS_SYSMODAL style
4. stays on top of certain window - pass that window handle to ShowDialog, 4-th argument
5. on top of certain window, always visible - 3 and 4
6. remove taskbar button - 4 or add WS_EX_TOOLWINDOW style
7. add taskbar button if missing (you did'n ask that) - add WS_EX_APPWINDOW style
2. fixed in place but moveable with right button, like toolbars - there is a topic in the forum that shows how to do it
3. stays on top - add WS_EX_TOPMOST or DS_SYSMODAL style
4. stays on top of certain window - pass that window handle to ShowDialog, 4-th argument
5. on top of certain window, always visible - 3 and 4
6. remove taskbar button - 4 or add WS_EX_TOOLWINDOW style
7. add taskbar button if missing (you did'n ask that) - add WS_EX_APPWINDOW style
