Click to See Complete Forum and Search --> : I need form dimentions for 800 x 600 resolution


John_Lamb
April 22nd, 2001, 03:53 PM
If my system is designed to run on a screen size of 800 x 600, then what should the Width and Height of the form be in twips.

Help appreciated

John lamb

psiclone
April 22nd, 2001, 04:20 PM
To convert a pixel value to a twip value,
use

pxValue * Screen.TwipsPerPixelX

for width,

and

pxValue * Screen.TwipsPerPixelY

for height.

where pxValue is your pixel value (600, 800, etc)

John_Lamb
April 23rd, 2001, 01:24 AM
Thanks I'll give it a go

John lamb