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

Re: Screen size for winform apps by Bob

Bob
Tue Dec 04 06:15:17 PST 2007

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.


"John" <John@nospam.infovis.co.uk> wrote in message
news:Oj8m3TnNIHA.4272@TK2MSFTNGP05.phx.gbl...
> 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
>


Re: Screen size for winform apps by John

John
Tue Dec 04 09:29:00 PST 2007

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

"Bob Powell [MVP]" <bob@spamkillerbobpowell.net> wrote in message
news:59C03F01-612E-4735-8DE5-66BB2DE40115@microsoft.com...
> 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.
>
>
> "John" <John@nospam.infovis.co.uk> wrote in message
> news:Oj8m3TnNIHA.4272@TK2MSFTNGP05.phx.gbl...
>> 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
>>
>



Re: Screen size for winform apps by Herfried

Herfried
Tue Dec 04 14:24:54 PST 2007

"John" <John@nospam.infovis.co.uk> schrieb:
> 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.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>


Re: Screen size for winform apps by Phill

Phill
Wed Dec 05 05:19:44 PST 2007

John wrote:

> 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.

Re: Screen size for winform apps by Kevin

Kevin
Wed Dec 05 09:18:03 PST 2007

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.


"John" <John@nospam.infovis.co.uk> wrote in message
news:Oj8m3TnNIHA.4272@TK2MSFTNGP05.phx.gbl...
> 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
>