Hi,
I think you need to do what I had to do in the past with Kylix: calculate the size & position of your form and its content using the size of the screen. This gives something like that:
Form1.Height := Screen.Height
Form1.Width := Screen.Width
// then use the form to set the content:
btOk.Left := Form1.Left + 800 // btOk will be placed at 800 pixels from the left side of the form
btCancel.Left := btOk.Left + btOk.Width // btCancel will be placed on the left of btOk
It didn't check that code but if I remember well this is it.
This way your form will look good whatever the resolution or the size of the form may be.
Seb.