Group: Window - Library: user32
Splash Screen for the VFP application
BOOL MoveWindow(
HWND hWnd, // handle to window
int X, // horizontal position
int Y, // vertical position
int nWidth, // width
int nHeight, // height
BOOL bRepaint // repaint option
);
DECLARE INTEGER MoveWindow IN user32;
INTEGER hWnd,;
INTEGER X,;
INTEGER Y,;
INTEGER nWidth,;
INTEGER nHeight,;
INTEGER bRepaint
hWnd [in] Handle to the window.
X [in] Specifies the new position of the left side of the window.
Y [in] Specifies the new position of the top of the window.
nWidth [in] Specifies the new width of the window.
nHeight [in] Specifies the new height of the window.
bRepaint [in] Specifies whether the window is to be repainted.
If the function succeeds, the return value is nonzero.