<?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 Splashscreen during reload task with macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226895#M79053</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;why don't you add one more sheet which will be your splash screen. And when leaving Selection sheet to show 3-rd sheet and when 3-rd sheet is shown reload is triggered. After reload is finished you show the Analysis sheet and hide the 3-rd sheet (splash screen)&lt;/P&gt;&lt;P&gt;btw how you manage to hide the reload window?&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Oct 2009 15:02:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-10-28T15:02:10Z</dc:date>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226893#M79051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi at all!!!&lt;/P&gt;&lt;P&gt;Anyone knows if is it possible to display a splashscreen during the reload task?&lt;/P&gt;&lt;P&gt;I have 2 sheets in a Qlikview Document. One contains Selections, the other the analysis. When the User pass from the selection sheet to the Analysis sheet, a macro is fired with the reload task.&lt;/P&gt;&lt;P&gt;The Reload window is hidden because i'm looking for a better solution ( if possible ) to dispaly a message with image as "Work in progress" and the Factory Logo.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Best regards,Lello&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 02:15:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226893#M79051</guid>
      <dc:creator />
      <dc:date>2009-10-28T02:15:30Z</dc:date>
    </item>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226894#M79052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not as far as I can tell, only AFTER the reload has finished.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 14:56:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226894#M79052</guid>
      <dc:creator />
      <dc:date>2009-10-28T14:56:38Z</dc:date>
    </item>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226895#M79053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;why don't you add one more sheet which will be your splash screen. And when leaving Selection sheet to show 3-rd sheet and when 3-rd sheet is shown reload is triggered. After reload is finished you show the Analysis sheet and hide the 3-rd sheet (splash screen)&lt;/P&gt;&lt;P&gt;btw how you manage to hide the reload window?&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 15:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226895#M79053</guid>
      <dc:creator />
      <dc:date>2009-10-28T15:02:10Z</dc:date>
    </item>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226896#M79054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;nice and clean solution. The Changing sheet process does not work very well. You can read the following code:&lt;/P&gt;&lt;P&gt;[ code ]&lt;/P&gt;&lt;P&gt;set v = ActiveDocument.GetVariable("ShowMySheet")&lt;BR /&gt; v.SetContent "TRUE", true&lt;BR /&gt; ActiveDocument.Sheets("Progress").Activate&lt;BR /&gt; ActiveDocument.GetApplication.WaitForIdle 5000&lt;BR /&gt; Set tabellaGiac = ActiveDocument.GetSheetObject(ActiveDocument.Variables("tbGiacenzeMensili").GetContent.String)&lt;BR /&gt; if not(tabellaGiac.IsMaximized) then&lt;BR /&gt; tabellaGiac.Maximize&lt;BR /&gt; end if&lt;BR /&gt; tabellaGiac.Export ActiveDocument.Variables("QvWorkPath").GetContent.String &amp;amp; "\giacenze.csv",";"&lt;BR /&gt; tabellaGiac.Minimize&lt;BR /&gt; ActiveDocument.PartialReload 0&lt;BR /&gt; v.SetContent "FALSE", true&lt;BR /&gt; ActiveDocument.Sheets("ABC_CONSUMI").ACTIVATE&lt;/P&gt;&lt;P&gt;[ /code ]&lt;/P&gt;&lt;P&gt;The problem is that i can't hide the partialReload Window. Do you know if is it possible?&lt;/P&gt;&lt;P&gt;Thanks in advance, Lello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 22:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226896#M79054</guid>
      <dc:creator />
      <dc:date>2009-11-02T22:15:39Z</dc:date>
    </item>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226897#M79055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i don't know how to hide it. I personally was wondering if it's possible reload screen to be hidden but didn't find a way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 07:52:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226897#M79055</guid>
      <dc:creator />
      <dc:date>2009-11-09T07:52:25Z</dc:date>
    </item>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226898#M79056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hm one very stupid "solution" is to move the reload screen to the right (or left) as far as you can and check "Close when finished" and save the document. The reload screen position is saved and the next time when the document is reload the screen will not be "visible"&lt;/P&gt;&lt;P&gt;Is not a real solution but may be in hand &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 07:58:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226898#M79056</guid>
      <dc:creator />
      <dc:date>2009-11-09T07:58:56Z</dc:date>
    </item>
    <item>
      <title>Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226899#M79057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will be stupid but it works!!!! Thinking about, this tip is often used in PDA'S application.&lt;/P&gt;&lt;P&gt;Thanks for the tips.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 14:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226899#M79057</guid>
      <dc:creator />
      <dc:date>2009-11-09T14:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splashscreen during reload task with macro</title>
      <link>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226900#M79058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution to hide reload screen in partialReload is using:&lt;/P&gt;&lt;P&gt;ActiveDocument.DoReload 0,True,false&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 13:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Splashscreen-during-reload-task-with-macro/m-p/226900#M79058</guid>
      <dc:creator />
      <dc:date>2014-04-16T13:14:49Z</dc:date>
    </item>
  </channel>
</rss>

