Form Size

N

New

This may be a dumb question but what is the largest size you would
recommend a form to be if it is designed to work in a 1024 x 768
enviroment since some peopl have the taskbar set greater then one line

BTW I am ahort of form real estate and I know that I can run the form
maximized but I want to design it so that no elements are cut off
 
A

Armin Zingler

This may be a dumb question but what is the largest size you would
recommend a form to be if it is designed to work in a 1024 x 768
enviroment since some peopl have the taskbar set greater then one
line

BTW I am ahort of form real estate and I know that I can run the
form maximized but I want to design it so that no elements are cut
off


It is hard to specify a minimum resolution for an applicatin because, as
you've said, the resolution itself doesn't determine the workspace available
for a maximized window. There are other parameters too, like the font size
of the window caption, menu font size etc. So, I'd only call an application
"usually fits best with AxB resolution without scrolling". In general, the
smaller the "best fit" minimum size, the more people will be able to use it
without complaining about having to scroll a lot.

When designing a form, I would define a minimum size (MinimumSize). IMO,
this is the size when all controls that's position and size is adjusted
automatically (Anchor/Dock properies), still look acceptable and don't
overlap each other. If the user makes the Form even smaller, he has to
scroll. In the end, the minimum size of the largests Form of the application
defines the "best fit" minimum size for the aplication. As mentioned, the
smaller it is the more people will buy/like it. Nowadays, I would go for
1024x768 but that's (of course) up to you.

In addition, the control's might auto-size depending on the "font size"
(actual the dpi ratio) set in the system, so you can never be sure that
everything will fit on the screen.


Armin
 
R

rowe_newsgroups

Just as an addition...

Most people are fairly forgiving when it comes to scrolling
horizontally, but most will get ticked when they have to scroll the
program vertically. This probably has to do with being able to easily
scroll with the mouse wheel, but having to go and drag down the scroll
bar with the mouse, which can be a major distraction to the user.

If you are truly set on pleasing everyone, you might even allow the
user's to move and resize you're controls. There are a few articles
about moving controls at runtime on codeproject.com, but it would still
take a lot of effort to get things moving smoothly.

Thanks,

Seth Rowe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Forms and Screen Size 2
Form size ??? 14
Vista border sizes in form design vs application 2
form size 3
Open Form size 1024 X 768 1
XY coordinates on form 9
Text size 10
Controls that Expand and Contract with Form 7

Top