<?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: Progress or Status Bar (VBScript) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553515#M686694</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Carletion,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find here &lt;A _jive_internal="true" href="https://community.qlik.com/thread/32363"&gt;http://community.qlik.com/thread/32363&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jan 2014 03:10:58 GMT</pubDate>
    <dc:creator>Siva_Sankar</dc:creator>
    <dc:date>2014-01-23T03:10:58Z</dc:date>
    <item>
      <title>Progress or Status Bar (VBScript)</title>
      <link>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553514#M686693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone come up with a good way to display some useful text to the user WHILE the VBScript is processing?&amp;nbsp; I tried updating out to a text object, but the object is only updated when the script completes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2014 20:49:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553514#M686693</guid>
      <dc:creator />
      <dc:date>2014-01-22T20:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Progress or Status Bar (VBScript)</title>
      <link>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553515#M686694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Carletion,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find here &lt;A _jive_internal="true" href="https://community.qlik.com/thread/32363"&gt;http://community.qlik.com/thread/32363&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 03:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553515#M686694</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2014-01-23T03:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Progress or Status Bar (VBScript)</title>
      <link>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553516#M686695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the suggestion, but that isn't what I was looking for.&amp;nbsp; I was hoping to find some solution similar to the Excel VBA command Application.StatusBar where I can display actual text to the user as the VBScript is progressing.&amp;nbsp; The solution you propose is only the equivelant to an hour-glass effect.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 14:11:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553516#M686695</guid>
      <dc:creator />
      <dc:date>2014-01-23T14:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Progress or Status Bar (VBScript)</title>
      <link>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553517#M686696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to figure this out.&amp;nbsp; I created a text box, and named it "StatusBar."&amp;nbsp; I then created the below function and called the function whenever I wanted something displayed to the user DURING processing of the VB.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found that the "WaitForIdle" command would make sure the text box would refresh such that the user would see the content in the "StatusBar" text box.&amp;nbsp; I also found that the "WaitForIdle" command is expensive in terms of processing time.&amp;nbsp; So I also added a parameter in the function "sUpdateScreen" that I could use to tell the function to update the screen or not.&amp;nbsp; Passing "CLS" to the function clears the text box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION StatusBar(sStatusBar,sUpdateScreen)&lt;/P&gt;&lt;P&gt;&amp;nbsp; set myObject = ActiveDocument.GetSheetObject("StatusBar")&lt;/P&gt;&lt;P&gt;&amp;nbsp; set myObjectProp = myObject.GetProperties&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT CASE sStatusBar&lt;/P&gt;&lt;P&gt;&amp;nbsp; CASE "CLS"&lt;/P&gt;&lt;P&gt;&amp;nbsp; myobject.SetText ""&lt;/P&gt;&lt;P&gt;&amp;nbsp; CASE ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; myobject.SetText now &amp;amp; ":&amp;nbsp; " &amp;amp; sStatusBar &amp;amp; chr(10) &amp;amp; myobject.GetText&lt;/P&gt;&lt;P&gt;&amp;nbsp; END SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp; if sUpdateScreen = True then ActiveDocument.GetApplication.WaitForIdle&lt;/P&gt;&lt;P&gt;END FUNCTION&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 17:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553517#M686696</guid>
      <dc:creator />
      <dc:date>2014-01-24T17:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Progress or Status Bar (VBScript)</title>
      <link>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553518#M686697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This sounds to me an interesting question. I don't have much experience in &lt;A href="http://www.kettic.com/winforms_ui/track_status.shtml"&gt;&lt;SPAN style="color: #3d3d3d;"&gt;status control&lt;/SPAN&gt;&lt;/A&gt;, hence I feel so helpless on these kind of question, though I'd ever coped with a &lt;A href="http://www.kettic.com/winforms_ui/csharp_guide/track_status_progressbar.shtml"&gt;&lt;SPAN style="color: #3d3d3d;"&gt;C# progressbar control&lt;/SPAN&gt;&lt;/A&gt;. The solution here is so helpful and insightful to me. I'd like to see more related questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 02:31:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Progress-or-Status-Bar-VBScript/m-p/553518#M686697</guid>
      <dc:creator />
      <dc:date>2014-05-06T02:31:28Z</dc:date>
    </item>
  </channel>
</rss>

