Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
noman212
Creator III
Creator III

Display Issue

Hello Friends,

I made a project on 14" Monitor now i want to display it on 40" LED when i display my project on 40" its shows wide gaps and object is also very small. how can i set it to full view mode so that when i display it any size of LED its shows same?

1 Solution

Accepted Solutions
vardhancse
Specialist III
Specialist III

we can create a button to zoom in and zoom out using macros.

Or else we can use zoom to fit extension in our dashboard.

we can download and can install the extension, once installed we can see the same in setting->document properties->extensions.

here we can use the extension available, just select the zoom to fit extension and click on add.

once close and open the qvw, so that the changes will get reflected.

Not: This is the default extension, may not work for all requirements. we need to change the code as per our requirement.

View solution in original post

9 Replies
arulsettu
Master III
Master III

hi try this

view->fit zoom to window

amit_saini
Master III
Master III

Noman ,

Play around with display properties .

Thanks,

AS

vardhancse
Specialist III
Specialist III

we can create a button to zoom in and zoom out using macros.

Or else we can use zoom to fit extension in our dashboard.

we can download and can install the extension, once installed we can see the same in setting->document properties->extensions.

here we can use the extension available, just select the zoom to fit extension and click on add.

once close and open the qvw, so that the changes will get reflected.

Not: This is the default extension, may not work for all requirements. we need to change the code as per our requirement.

jagan
Luminary Alumni
Luminary Alumni

Hi,

Call this macro on OnOpen Document Trigger

  1. Sub FitZoomToWindow 
  2. ActiveDocument.GetApplication.WaitForIdle 
  3. ActiveDocument.ActiveSheet.FItZoomToWindow 
  4. End Sub 

Hope this helps you.

Regards,

Jagan.

sujeetsingh
Master III
Master III

Jagan this is a new thing i learned today.

ashfaq_haseeb
Champion III
Champion III

Hi,

You can use this extension

or attached macro.

Hope it helps

Regards

ASHFAQ

vardhancse
Specialist III
Specialist III

Hi Jagan,

Is this macro work based on system resolution.

like whichever screen resolution we open the dashboard it will auto zoom to window. is that correct.

jagan
Luminary Alumni
Luminary Alumni

Yes, you can check this in your machine  using

View Menu -> Fit zoom to window

Now again try like this, minimize your screen to some 50% and choose the same option again.

You can see the difference.

Regards,

Jagan.

vardhancse
Specialist III
Specialist III

Thanks Jagan.

Like i am asking about the macro code just mentioned.