(Gast)
n/a Beiträge
|
Re: How to handle window move?
31. Mai 2010, 13:12
Maybe this helps?:
Delphi-Quellcode:
var
rc: TRect;
..
.
// get position
GetWindowRect(self.Handle,rc);
// set position
MoveWindow(self.Handle,rc.left,rc.top,(rc.right-rc.left),(rc.bottom-rc.top),true) ;
|
|
Zitat
|