Screen size for winform apps

J

John

Hi

I have been developing apps with screen size 800x600 for maximum
compatibility. I am just wondering if I should start my newest app with
screen size 1024x768. What is the commonly used standard?

Thanks

Regards
 
B

Bob Powell [MVP]

If you intend to continue to target older operating systems and machines,
stick with 800 * 600. If you target later systems either go for the
1024*768, which is still small on many modern monitors, or try to make a
totally resolution independant application.

--
--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
J

John

Hi Bob

Many thanks. How can I make my app resolution independent? Is there a
reliable third party tool available to do that?

Thanks

Regards
 
H

Herfried K. Wagner [MVP]

John said:
Many thanks. How can I make my app resolution independent? Is there a
reliable third party tool available to do that?

You could use splitter controls, docking, anchoring, and the
tablelayoutpanel and flowlayoutpanel controls to make your controls resize
if the form size gets changed.
 
P

Phill W.

John said:
I have been developing apps with screen size 800x600 for maximum
compatibility. I am just wondering if I should start my newest app with
screen size 1024x768. What is the commonly used standard?

These days, it's probably safe to /start/ at 1024x768 but I still know
quite a few people running at 800x600. /Whatever/ size you choose to
start from, stick to this rule : "build small, allow for more".

It's far, /far/ easier to take a small window and get it to scale up
nicely, to make use of a bigger screen, than it is to take a big one and
try to squash it down again.

HTH,
Phill W.
 
K

Kevin S Gallagher

Sometimes the issue lays in accessibility, user is visually impaired and
nothing technical is going to change this. We strive for 1024 mode if at all
possible but three percent of our applications require 800x600.

As others have mentioned, it's better to start small (800x600) if in doubt.
 

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

Top