<?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: ActiveX Component can't create object &amp;quot;&amp;quot;Scripting.FileSystemObject&amp;quot;&amp;quot; in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541878#M202518</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I don't know I will search ....&lt;/P&gt;&lt;P&gt;But in parallel I try to do it differently, I would like to avoid to use txt file and write directly in the shell....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try that:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_13831281082805311 jive_macro_code" jivemacro_uid="_13831281082805311" modifiedtitle="true"&gt;
&lt;P&gt;Dim shell&lt;/P&gt;
&lt;P&gt;Set shell = CreateObject("WScript.Shell")&lt;/P&gt;
&lt;P&gt;shell.Run "ftp -n" 'It opens the shell&lt;/P&gt;
&lt;P&gt;shell.sleep 500&lt;/P&gt;
&lt;P&gt;shell.SendKeys ("open ***-ftp.partners.*********")&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I don't success to write somoething in the shell with the commande SendKeys....&lt;/P&gt;&lt;P&gt;Nothing happened....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me what's wrong with my script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tkx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Oct 2013 10:16:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-10-30T10:16:21Z</dc:date>
    <item>
      <title>ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541871#M202511</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've got this error (ActiveX Component can't create object ""Scripting.FileSystemObject"") when I lanch a macro to upload a file with a FTP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13830434991602868" jivemacro_uid="_13830434991602868" modifiedtitle="true"&gt;
&lt;P&gt;sub Upload&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;set vPath = ActiveDocument.Variables("vPathFile").GetContent&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Dim FSO&lt;/P&gt;
&lt;P&gt;Dim File&lt;/P&gt;
&lt;P&gt;Set FSO = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;
&lt;P&gt;Set File = FSO.OpenTextFile("C:\temp.txt", 2, True)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;File.WriteLine "open ***-ftp.*************"&lt;/P&gt;
&lt;P&gt;File.WriteLine "user"&lt;/P&gt;
&lt;P&gt;File.WriteLine "****"&lt;/P&gt;
&lt;P&gt;File.WriteLine "*****"&lt;/P&gt;
&lt;P&gt;File.WriteLine "cd qlikview/prodis"&lt;/P&gt;
&lt;P&gt;File.WriteLine "PUT "&amp;amp; vPath.string&lt;/P&gt;
&lt;P&gt;File.WriteLine "disconnect"&lt;/P&gt;
&lt;P&gt;File.WriteLine "quit"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Dim shell&lt;/P&gt;
&lt;P&gt;Set shell = CreateObject("WScript.Shell")&lt;/P&gt;
&lt;P&gt;shell.Run "ftp -n -s:C:\temp.txt"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;End Sub &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i lanch this macro like this, there is no problem...&lt;/P&gt;&lt;P&gt;but if I change the path of the .txt file for example: &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;* **&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;C:\Users\Public\Documents\temp.txt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got an error....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is the users are not Adminstrateur of their computer, so they can't create a txt file in C:&lt;/P&gt;&lt;P&gt;that's why i want to change the path, like that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know why ActiveX can't create the object with this path wheras it works whith an other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(My macro has system Access, it's not the problem)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DUEZ Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 10:52:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541871#M202511</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-29T10:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541872#M202512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a security setting within the macro-modul - you need set the access level on the left side from editor to access on extern.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 12:16:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541872#M202512</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-10-29T12:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541873#M202513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; the folder C:\Users\Public\Documents\ is available for your users? Which windows version have they?&lt;/P&gt;&lt;P&gt;On my pc(win7) it is working fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 12:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541873#M202513</guid>
      <dc:creator>bbi_mba_76</dc:creator>
      <dc:date>2013-10-29T12:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541874#M202514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Marcus:&lt;/SPAN&gt; No the Access is alerady set to system etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I think "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;C:\Users\Public\Documents\'&amp;nbsp; is available for all users, even if they're not admin...I think it's a path without security....I'm not sure because I'm consultant, and I work for an other company so I don't manage security here....but I will ask....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On my computer it's also working&amp;nbsp; fine....but on the computer of an users.....with C:\temp.txt there is no problem but with the other path it don't work whereras I can create a document file with no problem in "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;C:\Users\Public\Documents\' on his computer....that's why I though it was a ActiveX problem (authorization to create there? I don't know)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;EDIT: I forget to say, they work also on &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;win7&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 13:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541874#M202514</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-29T13:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541875#M202515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand right, the txt-file will be created in "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;C:\Users\Public\Documents\" and then occurs the error message &lt;/SPAN&gt;ActiveX Component can't create object ""Scripting.FileSystemObject""?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;- Marcus&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 14:31:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541875#M202515</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-10-29T14:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541876#M202516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes exactly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the txt-file is created in "C:\" there is no problem (but I can't do that, because the Network admin don't want I create file there) but when i want to create the file in&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;C:\Users\Public\Documents\"&lt;/SPAN&gt; I've got the ActiveX error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 14:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541876#M202516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-29T14:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541877#M202517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems as if there are not the proper access rights for this path (try it - for testing - elsewhere) and/or ActiveX is on user-level not right configured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 15:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541877#M202517</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-10-29T15:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541878#M202518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I don't know I will search ....&lt;/P&gt;&lt;P&gt;But in parallel I try to do it differently, I would like to avoid to use txt file and write directly in the shell....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try that:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_13831281082805311 jive_macro_code" jivemacro_uid="_13831281082805311" modifiedtitle="true"&gt;
&lt;P&gt;Dim shell&lt;/P&gt;
&lt;P&gt;Set shell = CreateObject("WScript.Shell")&lt;/P&gt;
&lt;P&gt;shell.Run "ftp -n" 'It opens the shell&lt;/P&gt;
&lt;P&gt;shell.sleep 500&lt;/P&gt;
&lt;P&gt;shell.SendKeys ("open ***-ftp.partners.*********")&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I don't success to write somoething in the shell with the commande SendKeys....&lt;/P&gt;&lt;P&gt;Nothing happened....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me what's wrong with my script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tkx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:16:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541878#M202518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-30T10:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541879#M202519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My experience with SendKeys is quite bad ... and then on user-level ... I wouldn't it recommend and I think it will not solved your problems. Generally the approach to create an txt-file with a ftp-statement and afterwards to execute it worked. If not, then there are problems with access rights and/or proper syntax/config-details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you always the message with ActiveX (FileSystemObject or Shell) or will the shell-statement executed (you should set a statement like "timeout /T 15" in your txt-file therewith you could see what is wrong by the execution)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:44:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541879#M202519</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-10-30T10:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541880#M202520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I also think that SendKeys is not the solution but if I don't sucess to resolve my problem with twt-file, I search an other way....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, I still have my problem (it's very random) I don't really understand where is the problem, on some users computer it works and on others no....&lt;/P&gt;&lt;P&gt;But I don't think the timeout can help (but maybe I don't uderstand) because I think the problem is at the creation of the txt-file (not during the execution...)&amp;nbsp; It seems like on some computers, I can't create the txt-file on the computer...&lt;/P&gt;&lt;P&gt;The problem is that I don't know exactly the security in the company I work as a consultant. &lt;/P&gt;&lt;P&gt;When I lanch the application with the rich client, an do "open on server" there is no problem...&lt;/P&gt;&lt;P&gt;the problem appears when we use IE with IE plug-in ( macro don't work in full web version by the way, but it's an other problem)...&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Do you think the problem is a bad setting of ActiveX....because maybe I can ask to IT team to set it differently...I'm quite lost.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541880#M202520</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-30T11:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541881#M202521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ActiveX settings belongs to the global security settings from windows and is for each user individual. If it worked for some user and for other user not - it will be these settings. I think you need therefor the help from the IT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/48356_pastedImage_0.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541881#M202521</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-10-30T11:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541882#M202522</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 too had same issue with Active X component. Can you please ask users to install IE plugin from Access Point and after successfull install ask users to open application and the press Ctrl+Shift+M and give system access to module script.&lt;/P&gt;&lt;P&gt;Let me know if any further info is required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541882#M202522</guid>
      <dc:creator />
      <dc:date>2013-10-30T11:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541883#M202523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How &lt;A href="https://community.qlik.com/qlik-users/138962"&gt;Varsha Shashidhar&lt;/A&gt;mentioned there are also the possibility for the user to forbid or limited the macro-execution. If Ctrl+Shift+M not worked you could also go (and change) to the settings.ini in C:\Users\UserName\AppData\Roaming\QlikTech\QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 12:04:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541883#M202523</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-10-30T12:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541884#M202524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok it was finally a security problem....and Crtl+shift+M solve the problem...&lt;/P&gt;&lt;P&gt;Thank you very much...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when users re-open the application, the Crtl+shit+M choice isn't save....they have to do this each time....&lt;/P&gt;&lt;P&gt;Is it normal?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;settings.ini&lt;/SPAN&gt; file as Marcus say, it will be better?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2013 08:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541884#M202524</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-11-08T08:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541885#M202525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;I don't think so its required each time. But if IE settings are cleared when browser is opened then you may have this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2013 09:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541885#M202525</guid>
      <dc:creator />
      <dc:date>2013-11-08T09:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541886#M202526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at this thread&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/242231"&gt;Re: Change Macro security to allow System Access&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2013 09:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541886#M202526</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2013-11-08T09:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX Component can't create object ""Scripting.FileSystemObject""</title>
      <link>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541887#M202527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus, that was my issue. Something easy to overlook.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/blush.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2015 19:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ActiveX-Component-can-t-create-object-quot-quot-Scripting/m-p/541887#M202527</guid>
      <dc:creator />
      <dc:date>2015-08-13T19:23:27Z</dc:date>
    </item>
  </channel>
</rss>

