<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Fit Zoom to window Macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603485#M1105833</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have version 11 sr2 installed on the server, I have currently got the &lt;BR /&gt;following macro as a OnActivate Sheet Trigger &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Zoom &lt;BR /&gt;ActiveDocument.GetApplication.WaitForIdle &lt;BR /&gt;ActiveDocument.ActiveSheet.FitZoomToWindow&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seem to work fine when a user has a 17 inch screen but anything smaller i.e 15 inch screen, &lt;BR /&gt;it autosize the sheet to the point it is too small for the user to see the charts etc.. is there an alternative macro that will align all&lt;BR /&gt;sheets on the document it activates to its best visualisation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Apr 2014 14:43:24 GMT</pubDate>
    <dc:creator>ivandrago</dc:creator>
    <dc:date>2014-04-04T14:43:24Z</dc:date>
    <item>
      <title>Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603485#M1105833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have version 11 sr2 installed on the server, I have currently got the &lt;BR /&gt;following macro as a OnActivate Sheet Trigger &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Zoom &lt;BR /&gt;ActiveDocument.GetApplication.WaitForIdle &lt;BR /&gt;ActiveDocument.ActiveSheet.FitZoomToWindow&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seem to work fine when a user has a 17 inch screen but anything smaller i.e 15 inch screen, &lt;BR /&gt;it autosize the sheet to the point it is too small for the user to see the charts etc.. is there an alternative macro that will align all&lt;BR /&gt;sheets on the document it activates to its best visualisation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Apr 2014 14:43:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603485#M1105833</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2014-04-04T14:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603486#M1105834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 12:48:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603486#M1105834</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2014-04-07T12:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603487#M1105835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you could do something like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub mas_zoom&lt;/P&gt;&lt;P&gt;set mysheet=ActiveDocument.ActiveSheet&lt;/P&gt;&lt;P&gt;set sp=mysheet.GetProperties&lt;/P&gt;&lt;P&gt;sp.ZoomFactor = sp.ZoomFactor + 0.1&lt;/P&gt;&lt;P&gt;mysheet.SetProperties sp&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub menos_zoom&lt;/P&gt;&lt;P&gt;set mysheet=ActiveDocument.ActiveSheet&lt;/P&gt;&lt;P&gt;set sp=mysheet.GetProperties&lt;/P&gt;&lt;P&gt;sp.ZoomFactor = sp.ZoomFactor - 0.1&lt;/P&gt;&lt;P&gt;mysheet.SetProperties sp&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not adjust the screen but allow you to get more or less zoom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;are you using IEPlugin or Full Browser to use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FitZoomToWindow&lt;/SPAN&gt;? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 14:34:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603487#M1105835</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-04-07T14:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603488#M1105836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I am using IE plugin, so do I use both the macros you have provided?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 00:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603488#M1105836</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2014-04-08T00:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603489#M1105837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a document extension that will work for AJAX and you can find it &lt;A _jive_internal="true" href="https://community.qlik.com/message/419992#419992"&gt;here.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 01:30:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603489#M1105837</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2014-04-08T01:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603490#M1105839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, try to add the two sub that i gave to you, to have the posibility yo do +zoom and - zoom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell how you do it and if it is work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 02:52:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603490#M1105839</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-04-08T02:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603491#M1105842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks Fernando, it looks ok what you have done. Based on the macros you have provided instead of having a macro button for each Zoon In/Zoom Out is it possible to have a slider so when the user moves the slider the screen goes bigger and the decreases when move the slider the other way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 14:55:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603491#M1105842</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2014-04-08T14:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fit Zoom to window Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603492#M1105845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;So is it possible to create a slider that would would increase the screen size?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 12:59:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fit-Zoom-to-window-Macro/m-p/603492#M1105845</guid>
      <dc:creator>ivandrago</dc:creator>
      <dc:date>2014-04-10T12:59:09Z</dc:date>
    </item>
  </channel>
</rss>

