003
29.11.2006, 17:36 Uhr
CppProgrammer
|
C++: |
#include "windows.h"
void AlwaysOnTop(HWND hWnd, bool b = true) { if(b == true) ::SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE); else ::SetWindowPos(hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE); }
|
Dieser Post wurde am 29.11.2006 um 17:40 Uhr von CppProgrammer editiert. |