Link to home
Start Free TrialLog in
Avatar of Z_Beeblebrox
Z_Beeblebrox

asked on

Large Fonts

Hi,

I have a splash screen form which has its picture property set to a bitmap. When the user has large fonts enabled, the form resizes so that it is larger than the bitmap. How can I prevent this from occurring, basically I want the form to stay the same size no matter what the user's font settings are.

Thanks,

Zaphod.
Avatar of Mike McCracken
Mike McCracken

You can sedt the form size in the load event.

Me.Left = 100
Me.Top = 100
Me.Width = 1000
Me.Height = 1000

mlmcc
The form will probably not be fully visible so you might need to add scroll bars to it so a user can scroll right and down.

mlmcc
Avatar of Z_Beeblebrox

ASKER

That does not seem to work, I still get the same behaviour.

Zaphod.
ASKER CERTIFIED SOLUTION
Avatar of olx
olx

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Perfect, thanks.

Zaphod.