Erst holst du die Mouse-Posotion:
Delphi-Quellcode:
var t: TPoint;
begin
GetCursorPos(t);
end;
Dann holst du dir das
handle des Fensters unter dem Cursor:
Delphi-Quellcode:
var h: HWND;
begin
h := WindowFromPoint(t);
end;
Mit dem
Handle kannst du dann machen was du willst.