[RESOLVED] UserControl ScaleMode issue
I made a UserControl that has its ControlContainer property set to True, and its ScaleMode property set to vbPixels.
The form it's on also has its ScaleMode set to vbPixels.
But, the controls inside the container seem to have their width, height, left, and top as Twips. Is there anyway to fix this?
I'm also not sure why I'm putting everything in italics. Sorry.
Re: UserControl ScaleMode issue
It is a bug. No idea if it was ever fixed.
http://support.microsoft.com/kb/188552
Use the ScaleX, ScaleY functions to return the desired value.
Re: UserControl ScaleMode issue
Quote:
Originally Posted by
brucevde
Use the ScaleX, ScaleY functions to return the desired value.
Yeah, that's what I've been doing. Oh well, thanks.