473,498 Members | 1,074 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Screen size for winform apps

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
Dec 4 '07 #1
5 4678
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" <Jo**@nospam.infovis.co.ukwrote in message
news:Oj**************@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
Dec 4 '07 #2
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]" <bo*@spamkillerbobpowell.netwrote in message
news:59**********************************@microsof t.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" <Jo**@nospam.infovis.co.ukwrote in message
news:Oj**************@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

Dec 4 '07 #3
"John" <Jo**@nospam.infovis.co.ukschrieb:
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/>

Dec 5 '07 #4
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.
Dec 5 '07 #5
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" <Jo**@nospam.infovis.co.ukwrote in message
news:Oj**************@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

Dec 5 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
20597
by: Tom | last post by:
Hi all In winform application I am trying to start 2 forms I am trying to show the 2nd winform on a separate thread. using Thread mainapp = new Thread(new ThreadStart(loadmainscm)); ...
8
2807
by: Sunil Menon | last post by:
Dear All, We are developing applications in ASP.Net...in one of our applications we would like to use a GridControl...we have tried to use a Server-Side Grid control but found the speed to be an...
0
1441
by: Fabio R. | last post by:
With GDI+ I've made a little winform app to capture a webpage snapshot, using the CreateGraphic method of the Webbrowser control. Everything works fine in winform, but I need (by user input) URL...
7
5667
by: Dean Slindee | last post by:
I would like to hear some practical comments about how to decide whether a new application becomes a Winform vs a Webform application. Would you say that every app should be, by default, a Winform...
0
1260
by: Litani | last post by:
Hi everyone, We have a winform application that uses webservices. It has list screens. The user selects a row from the grid and an edit screen is presented to the user with the selected row. ...
1
3635
by: =?Utf-8?B?cmFuZHkxMjAw?= | last post by:
I have a Winform (Composite UI Application Block) application that works great. Users have discovered that double-clicking any window title bar in Microsoft Windows XP is the same as clicking the...
14
2639
by: Monty | last post by:
Hello, I have created a solution which has both a web UI and a winform UI, the latter is just for administrators. The Web UI (a Web Application Project) and the winform project both...
0
1529
by: JB | last post by:
On 8 Apr, 10:03, "DSK Chakravarthy" <dskch...@msn.comwrote: Thanks for the reply. So the first part is looking easy enough. As for the next part: Well I have a winform which has a few text...
10
44053
by: =?Utf-8?B?UmljaA==?= | last post by:
A lot of users at my workplace use different screen resolutions, and I build apps to use 1680 x 1050 pixels res by default. But some users are using 800 x 600, and the apps are too large for their...
0
7163
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7200
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6884
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7375
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5460
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4904
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4586
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1416
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
651
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.