problem with screen resolution

ganesh71

Member
Joined
Mar 27, 2009
Messages
19
Programming Experience
Beginner
Hi...
How to develop a screen resolution independent vb.net application.
 
There will always be a minimum screen resolution dependency. Start by setting the form size to the minimum size, for example 800x600, then position the controls and play with the layout. Use the controls properties in Layout section for dynamic resizing and anchoring, use the controls from Container section in Toolbox to help with layout. Most likely you're using a higher resolution than this in development and can resize form at runtime both up (maximize) and down to see how the form layout behaves at different sizes. A key to good layout is not using too many controls in each view, and make those used fill the given area well.
 
Back
Top