Resolution problem

Jerome Brown

Member
Joined
Oct 21, 2004
Messages
8
Programming Experience
Beginner
I developed my application using a 1280 x 1024 resolution, but some of my users are using a 1024 x 768 resolution. Some of the buttons are being cut off when my users run the application. Is there a way to fix this problem or do I have to develope my forms using a 1024 x 768 resolution.
 
The easiest way to solve this is to use the anchor and dock propertys of your controls. Although that doesn't always work.

The other way is to code resizing of your controls based upon the size of the form, within the form_resize and load events.

TPM
 
you could cut down on some of the controls on the form by moving them to another form and using a menu item to open that other form, it'd be a form of organization and used for items that wouldn't be used a whole lot
 
Back
Top