convert mm to Pixels?
Cheers
Kev
You can do 2 things. Because the controls are all saved in Pixel distances, you can save the current Top,Left,height, width of a control into your database, and simply restore those settings.
the other option, would be to save it as a percentage. So if they change their screen resolution, you can always position the control near the same place.
ie, to save the .left of a control, use... LeftVal = 100 - ((( where ME is the form, and button1 is a sample control.
Just reverse the formula when restoring the values.