Skip to main content
Announcements
Jan 15, Trends 2025! Get expert guidance to thrive post-AI with After AI: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Screen Resolution Issue

I developed one dashboard on my machine.But if the same dashboard opens in some other machine it's looks in the different format.

I think it's because of the screen resolutioin problems. How to overcome this problem. Even if the screen resolutions are different i want to have dashboard in such a way that it's looks in the format as it's on my machine.

Can anyone help us on this.

Thanks,

Ram

10 Replies
manishkumar75
Partner - Creator II
Partner - Creator II

Hi,

You can overcome this problem by using Macro.

Create a VB Script as below :-

Sub Zoom

ActiveDocument.Sheets("").Activate
ActiveDocument.GetApplication.WaitForIdle
ActiveDocument.ActiveSheet.FitZoomToWindow
ActiveDocument.GetApplication.WaitForIdle
ActiveDocument.ActiveSheet.ApplyZoomToAllSheets

End Sub

and attach it with button on your sheet.

- Manish

johnw
Champion III
Champion III

Or you could teach your users to select it from the menu. But I'm not a fan of fit zoom to window. I don't like the way things scale up and down, as it often ruins my carefully-crafted screens as it changes font sizes and other things.

If the problem is that other people have lower resolutions than you, you're going to need to develop for THEIR resolution, not yours. While the fit zoom to window will make the application fit on their screen, actually designing for the lower resolution gives you much better control over what they see. That describes the situation with my computer and our shop - I'm running on a 1280x1024 screen developing for a standard screen resolution of 1024x768.

Of course it will never look exactly the same on someone else's screen. Someone at a higher resolution will have a lot of blank space. Someone with poor vision may set the resolution to 640x480, which would be way too small to actually design for. Colors will be slightly different. Brightness and contrast will be slightly different. You pretty much just can't control how other people set up their machines. Develop for the most common or lowest common resolution, and call it good. That's my advice, anyway.

Not applicable
Author

Thanks John

Not applicable
Author

Hi,

Is there a way to tell QV to open a document in a fixed resolution, ie 1024X768 as you mention?

I don't like to adjust it manual every time I open the document to develop. Neither do I fancy a useless button to do this. Can't find a way in the QV document settings though.

I'm new at QV so it's very possible that I overlook the simple solution that's probably around somewhere.

Thanks,

Hugo

ashfaq_haseeb
Champion III
Champion III

Hi,

While developing your app make sure you fix your required resolution.

Hope it helps

Regards

ASHFAQ

Not applicable
Author

Hi,

Thanks for reacting.

I want to set a fix resolution but I don't now how it's done.

Regards,

Hugo

ashfaq_haseeb
Champion III
Champion III

Hi,

As I say, while developing your app make sure you develop your app on the required resolution that's it.

Regards

ASHFAQ

vinay_hg
Creator III
Creator III

or creat a image of baground panel of what resolution you want, and apply that as your sheet bagroung image. design your objects within the panel. once design is done u can remove the background image from the sheet if u want.

vardhancse
Specialist III
Specialist III

there are some solutions for the same:

1.FitZoomToWindow(Extension):

     Need to re write the code as per our requirement.

2.Development need to be done on one standard resolution, mostly what users are using.

3. Fit Zoom to Window(will not work, because the objects alignment will not be proper.