Zitat von
padavan:
Gibt es überhaupt eine Möglichkeit einem fremden Programm die Position vorzuschreiben?
Klar!
Du brauchts lediglich das
Handle des Fensters.
Schau mal in die
OH zu Setwindowpos
Delphi-Quellcode:
BOOL SetWindowPos(
HWND hWnd,
// handle of window
HWND hWndInsertAfter,
// placement-order handle
int X,
// horizontal position
int Y,
// vertical position
int cx,
// width
int cy,
// height
UINT uFlags
// window-positioning flags
);
MfG GM