<?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 Re: Change screen resolution in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669857#M243417</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ever find a solution to&amp;nbsp; this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am most likely trying to exactly the same and am stuck between resolutions for a logged on computer, the server default resolution etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Niklas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Feb 2015 10:12:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-02-09T10:12:59Z</dc:date>
    <item>
      <title>Change screen resolution</title>
      <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669852#M243412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to change the screen resolution with a macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 06:33:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669852#M243412</guid>
      <dc:creator>johanlind</dc:creator>
      <dc:date>2014-07-29T06:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Change screen resolution</title>
      <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669853#M243413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think so, but you can allow zooming with macros:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sub&lt;/STRONG&gt; ZoomFitToWindow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.ActiveSheet.FitZoomToWindow &lt;BR /&gt;ActiveDocument.GetApplication.WaitforIdle&lt;BR /&gt;ActiveDocument.ActiveSheet.ApplyZoomToAllSheets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End Sub &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; ZoomIn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set&lt;/STRONG&gt; mysheet=ActiveDocument.ActiveSheet&lt;BR /&gt;&lt;STRONG&gt;set&lt;/STRONG&gt; sp=mysheet.GetProperties&lt;BR /&gt;sp.ZoomFactor = sp.ZoomFactor * 1.1&lt;BR /&gt;mysheet.SetProperties sp&lt;BR /&gt;ActiveDocument.GetApplication.WaitforIdle&lt;BR /&gt;ActiveDocument.ActiveSheet.ApplyZoomToAllSheets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub&lt;/STRONG&gt; ZoomOut&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set&lt;/STRONG&gt; mysheet=ActiveDocument.ActiveSheet&lt;BR /&gt;&lt;STRONG&gt;set&lt;/STRONG&gt; sp=mysheet.GetProperties&lt;BR /&gt;sp.ZoomFactor = sp.ZoomFactor * 0.9&lt;BR /&gt;mysheet.SetProperties sp&lt;BR /&gt;ActiveDocument.GetApplication.WaitforIdle&lt;BR /&gt;ActiveDocument.ActiveSheet.ApplyZoomToAllSheets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sub&lt;/STRONG&gt; ZoomNormal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set&lt;/STRONG&gt; mysheet=ActiveDocument.ActiveSheet&lt;BR /&gt;&lt;STRONG&gt;set&lt;/STRONG&gt; sp=mysheet.GetProperties&lt;BR /&gt;sp.ZoomFactor = 1&lt;BR /&gt;mysheet.SetProperties sp&lt;BR /&gt;ActiveDocument.GetApplication.WaitforIdle&lt;BR /&gt;ActiveDocument.ActiveSheet.ApplyZoomToAllSheets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End Sub &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 07:54:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669853#M243413</guid>
      <dc:creator>c_gilbert</dc:creator>
      <dc:date>2014-07-29T07:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Change screen resolution</title>
      <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669854#M243414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know how to change the zoom.&lt;/P&gt;&lt;P&gt;I want to take a screenshot/picture of a sheet with a macro, and the zoom function won't work with my macro for saving a picture.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my macro for export a picture:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;public function ExportImage&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; vFolder = Destination folder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetByID ("SH02").Activate &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set obj = ActiveDocument.GetSheetByID("SH02") &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.GetApplication.WaitForIdle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; fileName = "SH02" &amp;amp; ".jpg" &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.GetApplication.WaitForIdle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; obj.ExportBitmapToFile vFolder &amp;amp; fileName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other ideas for doing this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 08:57:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669854#M243414</guid>
      <dc:creator>johanlind</dc:creator>
      <dc:date>2014-07-29T08:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Change screen resolution</title>
      <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669855#M243415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/60578"&gt;Resize  screen objects to fit with screen size:&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/104200"&gt;How to know our Qlikview report resolution ?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 09:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669855#M243415</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-07-29T09:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change screen resolution</title>
      <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669856#M243416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I use the export function all objects will be exported in its original size, but the window(picture) size will change to the resolution I have set the window to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 09:14:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669856#M243416</guid>
      <dc:creator>johanlind</dc:creator>
      <dc:date>2014-07-29T09:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change screen resolution</title>
      <link>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669857#M243417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ever find a solution to&amp;nbsp; this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am most likely trying to exactly the same and am stuck between resolutions for a logged on computer, the server default resolution etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Niklas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Feb 2015 10:12:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-screen-resolution/m-p/669857#M243417</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T10:12:59Z</dc:date>
    </item>
  </channel>
</rss>

