Group: Window - Library: user32
The GetParent function retrieves a handle to the specified window"s parent or owner. To retrieve a handle to a specified ancestor, use the GetAncestor function.
Simple Window Viewer
Terminating all running applications from a VFP program
The window and its ancestors
HWND GetParent(
HWND hWnd // handle to child window
);
DECLARE INTEGER GetParent IN user32;
INTEGER hwnd
hWnd [in] Handle to the window whose parent window handle is to be retrieved.
If the window is a child window, the return value is a handle to the parent window. If the window is a top-level window, the return value is a handle to the owner window. If the window is a top-level unowned window or if the function fails, the return value is NULL.