Group: Window - Library: user32
Creating a window using CreateWindowEx function
Saying "Hello World!" with VFP and WinAPI
Splash Screen for the VFP application
How to block the ALT+TAB shortcut (WinXP)
Creating a console window for Visual FoxPro application
Placing On-screen Alert on top of all windows
BOOL ShowWindow(
HWND hWnd, // handle to window
int nCmdShow // show state
); DECLARE INTEGER ShowWindow IN user32;
INTEGER hwnd,;
INTEGER nCmdShow hWnd [in] Handle to the window
nCmdShow [in] Specifies how the window is to be shown
If the window was previously visible, the return value is nonzero. If the window was previously hidden, the return value is zero
Home