I'm trying to control the coordinates of where my program opens a new window because currently they're opening ontop of each other. Does anyone have a working example of how to do this?
|
|
This type of functionality has been explained for C# in another question on SO. Also, for Delphi, check out Understanding and Using Windows Callback Functions in Delphi which describes getting handles for windows that are currently open. And see Shake a window (form) from Delphi code which describes how to move a window once you've got its handle. |
||
|
|
|
|
You can always set the .Top and .Left properties manually, like this:
However, Windows has a default window placement algorithm that tries to keep the title bars of each window visible. On my computer, repeated clicks to this Button1 procedure give nicely stacked windows:
Also, don't forget that you can use the built-in set of TPosition locations:
|
||||||
|
