Group: Window - Library: user32
How to activate Windows Calculator
Confining Windows calculator inside the VFP main window
Running a regular FoxPro form while main VFP window is minimized
HWND SetParent(
HWND hWndChild, // handle to window
HWND hWndNewParent // new parent window
); DECLARE INTEGER SetParent IN user32;
INTEGER hWndChild,;
INTEGER hWndNewParent hWndChild [in] Handle to the child window.
hWndNewParent [in] Handle to the new parent window.
If the function succeeds, the return value is a handle to the previous parent window. If the function fails, the return value is NULL.
Home