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
Printable View
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
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)
Thanks I'll give it a go
John lamb