by Dan East » Oct 29, 2001 @ 9:28am
I just make PQ full screen. You have to call SHFullScreen to hide the existing taskbar, then size your application's window to fill the entire display. You have to do that each time your window receives an activation message (WM_ACTIVATE):<br>[fixed]<br>SHFullScreen(hWnd, SHFS_HIDETASKBAR);<br>MoveWindow(hWnd, 0, 0, GetSystemMetrics(SM_CXSCREEN),<br>GetSystemMetrics(SM_CYSCREEN), TRUE);[/fixed]<br><br>Dan East