<?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 file select dialog needed in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161304#M502724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For a more complete discussion of the topic, as well as the specific limitations of the approach already mentioned here, please see this thread:&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/forums/p/23565/90250.aspx"&gt;http://community.qlik.com/forums/p/23565/90250.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Aug 2010 19:14:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-08-17T19:14:25Z</dc:date>
    <item>
      <title>file select dialog needed</title>
      <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161302#M502722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what i want is a button. behind that button should be a file chooser dialog. After the file is selected a variable is filled with the selected filename including the path of the file. Is this possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Aug 2010 21:59:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161302#M502722</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2010-08-15T21:59:12Z</dc:date>
    </item>
    <item>
      <title>file select dialog needed</title>
      <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161303#M502723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Amien,&lt;/P&gt;&lt;P&gt;One approach is to add an Action to the button that triggers a macro. In the button properties, select the "Action" tab and click the "Add" button. Choose "External" as the Action Type, and "Run Macro" as the Action. After clicking OK, you will see a text box for Macro Name and a button that says "Edit Module". The Macro Name must be the name of one of the subroutines in your Macro module. Clicking on the Edit module button will bring up the Module editor. You have an option of writing your macro in VBScript or JScript. The rest of what I say assumes you are using VBScript.&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;I&gt;Assuming you have the right DLLs/OCXs installed&lt;/I&gt;&lt;/B&gt;, the following subroutine should open a file chooser dialog and set the result to a variable called "Variable1":&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;Sub ChooseFile&lt;BR /&gt; ' Create the dialog&lt;/CODE&gt;&lt;BR /&gt;set cd = CreateObject("UserAccounts.CommonDialog")&lt;BR /&gt;'Display it to the user&lt;BR /&gt;result = cd.ShowOpen&lt;BR /&gt;dim filePath&lt;BR /&gt;if(result &amp;lt;&amp;gt; 0)&lt;BR /&gt;'Assign the result to the filePath variable&lt;BR /&gt;filePath = cd.FileName&lt;BR /&gt;end if&lt;BR /&gt;' Get the QlikView variable&lt;BR /&gt;set v = ActiveDocument.Variables("Variable1")&lt;BR /&gt;' Assign the value&lt;BR /&gt;v.SetContent filePath, true&lt;BR /&gt;End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Aug 2010 19:03:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161303#M502723</guid>
      <dc:creator />
      <dc:date>2010-08-17T19:03:30Z</dc:date>
    </item>
    <item>
      <title>file select dialog needed</title>
      <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161304#M502724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For a more complete discussion of the topic, as well as the specific limitations of the approach already mentioned here, please see this thread:&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/forums/p/23565/90250.aspx"&gt;http://community.qlik.com/forums/p/23565/90250.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Aug 2010 19:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161304#M502724</guid>
      <dc:creator />
      <dc:date>2010-08-17T19:14:25Z</dc:date>
    </item>
    <item>
      <title>file select dialog needed</title>
      <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161305#M502725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;http://community.qlik.com/forums/t/23565.aspx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Aug 2010 10:16:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161305#M502725</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2010-08-18T10:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: file select dialog needed</title>
      <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161306#M502726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to work on "open/save dialog box" , but not able to get correct solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I seen your code but having an doubt how to provide the right DLLs/OCXs installed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls any suggestion regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2011 07:40:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161306#M502726</guid>
      <dc:creator />
      <dc:date>2011-07-11T07:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: file select dialog needed</title>
      <link>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161307#M502727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a workaround using PowerShell for all having problems in 64-bit environments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2013 13:18:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/file-select-dialog-needed/m-p/161307#M502727</guid>
      <dc:creator />
      <dc:date>2013-01-15T13:18:03Z</dc:date>
    </item>
  </channel>
</rss>

