Das steht aber auch im
MSDN:
Zitat:
WM_MOVING message
Sent to a window that the user is moving. By processing this message, an application can monitor the position of the drag rectangle and, if needed, change its position.
A window receives this message through its WindowProc function.
Parameters
wParam
This parameter is not used.
lParam
A pointer to a RECT structure with the current position of the window, in screen coordinates. To change the position of the drag rectangle, an application must change the members of this structure.
Wenn man komplett auf
VCL verzichten will, kann man dieses Rect dann nehmen, auf das andere Fenster umrechnen und das dann z.B. mit
SetWindowPos neu positionieren.