The software is built on Delphi 7.
On my XP machine, the form resizes as I expect. However, on two Vista machines, I have components with anchors set to [akLeft, akT
Before anchors were introduced in Delphi 4, we resized components dynamically to achieve the same effect. You can easily move/adjust the components in the form's onresize
event.
Setting the form's doublebuffered
property to true
may reduce flicker, by buffering the paint
method. I recall we used to have to implement that ourselves, too!