Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to have relative positions for objects?

Hi,

In my company, we have two sorts of screen. We have some old 4/3 screens and some wide screen 16/9 or 16/10. When I put some objects in an Qlikview application, I don't the have the same display. Is it possible to conserve the display without depends type of screen?

Thank you for your help.

1 Solution

Accepted Solutions
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, the only way of dealing with different screen sizes that we have found to work is with a macro, this is probably the simplest way:

 

Sub Zoom
ActiveDocument.ActiveSheet.FitZoomToWindow
End Sub

then call this on open or activate sheet?

Thanks

Steve

View solution in original post

2 Replies
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, the only way of dealing with different screen sizes that we have found to work is with a macro, this is probably the simplest way:

 

Sub Zoom
ActiveDocument.ActiveSheet.FitZoomToWindow
End Sub

then call this on open or activate sheet?

Thanks

Steve

Not applicable
Author

Thank a lot.