<?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: Browse file macro code in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130176#M371541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Missed the attachment. Please share.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 May 2016 09:19:39 GMT</pubDate>
    <dc:creator>bindu_apte</dc:creator>
    <dc:date>2016-05-25T09:19:39Z</dc:date>
    <item>
      <title>Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130171#M371536</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;When I searched for an sample to browse files from local machine to some path using qlikview macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But using that I can browse for only word or excel files, I wanted to upload jpeg or other image files. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence please let me know what changes I need to do in this code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 05:46:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130171#M371536</guid>
      <dc:creator>bindu_apte</dc:creator>
      <dc:date>2016-05-24T05:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130172#M371537</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;Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14640731822471228" jivemacro_uid="_14640731822471228"&gt;
&lt;P&gt;Sub BrowseFolder&lt;/P&gt;
&lt;P&gt; Set oXL=CreateObject("Excel.Application")&lt;/P&gt;
&lt;P&gt; File_Name=oXL.GetOpenFilename("All Files (*.*),*.*",,"Select file",False)&lt;/P&gt;
&lt;P&gt; If File_Name = "False" then&lt;/P&gt;
&lt;P&gt; Msgbox "Try Again"&lt;/P&gt;
&lt;P&gt; Set oXL=nothing&lt;/P&gt;
&lt;P&gt; Exit sub&lt;/P&gt;
&lt;P&gt; End If&lt;/P&gt;
&lt;P&gt; ActiveDocument.Variables("vFileName").SetContent File_Name, True&lt;/P&gt;
&lt;P&gt; End Sub&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 07:00:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130172#M371537</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-05-24T07:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130173#M371538</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 tried this code but taking long time to browse and not able to copy files after browsing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 09:35:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130173#M371538</guid>
      <dc:creator>bindu_apte</dc:creator>
      <dc:date>2016-05-24T09:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130174#M371539</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 just showed the method to browse the image file and not to copy the file to some other locations. You can use existing subroutine (&lt;SPAN style="font-size: 13.3333px;"&gt;second one&lt;/SPAN&gt;) in your attached example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have suggested the above method because there are multiple reasons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot use the attached file code for certain file types (&lt;SPAN style="color: #000000; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 12.6667px; background-color: #dedeff;"&gt;DOC, TXT nd VBS &lt;/SPAN&gt;). I was not sure about the image files. I did a test and it's not working for image file &lt;SPAN style="font-size: 13.3333px;"&gt;as expected&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.tek-tips.com/viewthread.cfm?qid=1604032" title="http://www.tek-tips.com/viewthread.cfm?qid=1604032"&gt;how to browse for a file in Windows 7 (x64) ? - VBScript - Tek-Tips &lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found various methods to browse the files. But most of them are not elegant and not working in Windows 7.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 18:18:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130174#M371539</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-05-24T18:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130175#M371540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bindu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the below attachment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 08:27:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130175#M371540</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-05-25T08:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130176#M371541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Missed the attachment. Please share.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 09:19:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130176#M371541</guid>
      <dc:creator>bindu_apte</dc:creator>
      <dc:date>2016-05-25T09:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Browse file macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130177#M371542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bindu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already attached the file. Please check the above reply.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="125728" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/125728_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 09:24:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Browse-file-macro-code/m-p/1130177#M371542</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-05-25T09:24:40Z</dc:date>
    </item>
  </channel>
</rss>

