Does anyone know how to figure out how many Pixels are in a twip? Or just KNOW how many are in a twip? I can't put my MDI form into Pixels.. so i'm stuck resizing my forms through a twips per pixel conversion.
Thanks,
-Ked-
Printable View
Does anyone know how to figure out how many Pixels are in a twip? Or just KNOW how many are in a twip? I can't put my MDI form into Pixels.. so i'm stuck resizing my forms through a twips per pixel conversion.
Thanks,
-Ked-
Pixels to Twip:Twips to Pixel:VB Code:
W = W * Screen.TwipsPerPixelX H = H * Screen.TwipsPerPixelYVB Code:
W = W / Screen.TwipsPerPixelX H = H / Screen.TwipsPerPixelY