473,804 Members | 2,201 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Developing on a different resolution machine to clients

I recently developed an application on my PC, which has quite a large screen
and a high resolution. When it was deployed, clients who had a different
configuration had problems with seeing all the controls and they had to use
scroll bars!!
Potentially all applications will be used by a wide range of users with
different settings; is there a preferred way to designing applications to
meet the needs of all end users? For this application, I'll just compact
the controls on each screen but is there a better way?

Thanks

Jun 27 '08 #1
3 1644
"axapta" <ja********@gma il.com>'s wild thoughts were
released on Tue, 17 Jun 2008 21:10:58 +0100 bearing the
following fruit:
>I recently developed an application on my PC, which has quite a large screen
and a high resolution. When it was deployed, clients who had a different
configuratio n had problems with seeing all the controls and they had to use
scroll bars!!
Potentially all applications will be used by a wide range of users with
different settings; is there a preferred way to designing applications to
meet the needs of all end users? For this application, I'll just compact
the controls on each screen but is there a better way?
Design your forms for the miminum resolution you intend to
support. That is really the only way to do it.
--
Jan Hyde

https://mvp.support.microsoft.com/profile/Jan.Hyde
Jun 27 '08 #2
On Jun 19, 4:31 pm, "Jan Hyde (VB MVP)"
<StellaDrin...@ REMOVE.ME.uboot .comwrote:
"axapta" <jas.jac...@gma il.com>'s wild thoughts were
released on Tue, 17 Jun 2008 21:10:58 +0100 bearing the
following fruit:
I recently developed an application on my PC, which has quite a large screen
and a high resolution. When it was deployed, clients who had a different
configuration had problems with seeing all the controls and they had to use
scroll bars!!
Potentially all applications will be used by a wide range of users with
different settings; is there a preferred way to designing applications to
meet the needs of all end users? For this application, I'll just compact
the controls on each screen but is there a better way?

Design your forms for the miminum resolution you intend to
support. That is really the only way to do it.

--
Jan Hyde

https://mvp.support.microsoft.com/profile/Jan.Hyde
Axapta,
Well, normally if your problem is not about docking, anchoring and
aligning the objects on your form (and shouldn't be problem as long as
you set them correctly), you may also consider tweaking your form on
load based on the resolutions that your clients have:

' To get all native screen-resolution(full screen)
"Screen.Primary Screen.Bounds.W idth" and
"Screen.Primary Screen.Bounds.H eight"

' and just for WorkingArea:

"Screen.Primary Screen.WorkingA rea...."

Hope this helps,

Onur Güzel
Jun 27 '08 #3
"Screen" is not recognised. What namespace is this in?
Thanks
"kimiraikko nen" <ki************ *@gmail.comwrot e in message
news:1d******** *************** ***********@y38 g2000hsy.google groups.com...
On Jun 19, 4:31 pm, "Jan Hyde (VB MVP)"
<StellaDrin...@ REMOVE.ME.uboot .comwrote:
"axapta" <jas.jac...@gma il.com>'s wild thoughts were
released on Tue, 17 Jun 2008 21:10:58 +0100 bearing the
following fruit:
I recently developed an application on my PC, which has quite a large
screen
and a high resolution. When it was deployed, clients who had a different
configuration had problems with seeing all the controls and they had to
use
scroll bars!!
Potentially all applications will be used by a wide range of users with
different settings; is there a preferred way to designing applications to
meet the needs of all end users? For this application, I'll just compact
the controls on each screen but is there a better way?

Design your forms for the miminum resolution you intend to
support. That is really the only way to do it.

--
Jan Hyde

https://mvp.support.microsoft.com/profile/Jan.Hyde
Axapta,
Well, normally if your problem is not about docking, anchoring and
aligning the objects on your form (and shouldn't be problem as long as
you set them correctly), you may also consider tweaking your form on
load based on the resolutions that your clients have:

' To get all native screen-resolution(full screen)
"Screen.Primary Screen.Bounds.W idth" and
"Screen.Primary Screen.Bounds.H eight"

' and just for WorkingArea:

"Screen.Primary Screen.WorkingA rea...."

Hope this helps,

Onur Güzel

Jun 27 '08 #4

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

Similar topics

5
1875
by: Joe Bonavita | last post by:
My Web forms display differently on different machine with the same resolution. The pages are designed to fit in 800*600 res but on some machines with 800*600 the form appears too big. Are there any built in functions to adjust the form based on resolution? Is there a way to detect the clients resolution? 1 last one, when using an image, how do I get the image to stay proportionate when reduced? Thanks,
11
2003
by: Simon | last post by:
Hi all As I'm sure is common knowledge the version of IIS included in XP Pro is limited in that you can only create 1 website in the IIS snap in. As an ASP.net developer this is a pain in the arse because I can't figure out how to stop having this fact cock up my relative urls. When I create a virtual directory - presumably what you're supposed to do when you're only allowed one site my relative URL's refer to the root of the
1
2352
by: GMK | last post by:
Hi all i would like to know how could i let my application to auto detect the clients screen resolution and to fit my application design on the spesification of the clients screen is there any Java script function that do this ot a VB.NET function. thank you so much!
7
1918
by: rockdale | last post by:
Hi, How do you guys deal with the different clinet resolution? For example, you have 800*600, 1024*768 and 1280*1024 on client side. We used to put everything into a table with fixed width (the lowest width of your clients' resolutions) then put everything inside the table with a percentage width. But for those clients with higher resolution, this way put them into a very smaller area to work on. But If we do not fix the outtest...
5
1847
by: simon | last post by:
well i have admin panel and agent panel. when i open admin panel and log in it works fine. but when agent opens agent panel in different pc and login and acts something like open a page or so, both admin panel and agent panel expires session and asks for re-login. What would be possible reason for this? Please anyone can help !!! platform: OS: windows 2000 server, IIS 6.0 Script : ASP, Javascript
0
1141
by: srini | last post by:
Hi, I have an application in which it shows links on left frame and images on right frame. I am calculating the image height and width to fit to the client's window dynamically based on the screen resolution of the client's machine. Here what i see is the problem.... everything looks good when i did my dev machine, but if i deploy on
5
10586
by: lamxing | last post by:
Hi, I've come across a strange problem with the WinForm's sizing. I've designed a WinForm and it runs fine on my computer and some other PCs. But when I was trying to run the app under some PCs with wide screen, some of my controls on the WinForm will automatic resize themselves to be bigger and thus push other controls off the screen. For a sample of this problem, please see http://usctimes.com/screen.jpg .. The screen on the left is...
4
1283
by: trint | last post by:
On my development computer, the new site looks and acts great. But when I ask a coleage to check it, the pages never look right: example: 1. the gridviews are always overlaping text. 2. some of the controls are in various places on the page like where they should not be. I have (what appears to be) the tables, rows, columns and cells set
7
1836
by: Chris Marsh | last post by:
All I've been asked run a VM on my development machine, with Windows Server 2003 installed. I've also been asked to then develop against this environment from the host machine, using Visual Studio 2003. Questions: 1. Is it even possible to use VS 2003 to develop when all files and IIS are on a remote machine or VM?
0
9715
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10600
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10352
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10354
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9175
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7642
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6867
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5535
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3835
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.