Einzelnen Beitrag anzeigen

blackfin
(Gast)

n/a Beiträge
 
#4

Re: How to handle window move?

  Alt 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) ;
  Mit Zitat antworten Zitat