<?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 ActiveX component can't create object in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234462#M16944</link>
    <description>&lt;P&gt;I want to run a SAS EG project using the Windows Task scheduler.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS EG very kindly generates a vbs file for me (which is listed following my "signature," below). &amp;nbsp;However, when I attempt to execute the script I get and error code of 1AD with the following error description:&lt;/P&gt;&lt;P&gt;ActiveX component can't create object&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that the vbs&amp;nbsp;command that is failing is:&lt;/P&gt;&lt;P&gt;Set app = CreateObject("SASEGObjectModel.Application.5.1")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just for fun, I tried executing a CreateObject on a different object, to wit:&lt;/P&gt;&lt;P&gt;Set app = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 20px;"&gt;Which works just fine. &amp;nbsp;In doing some Googling about, I see this type of error ("&lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt;ActiveX component can't create object") usually indicates that a particular COM object isn't registered or is otherwise unavailable. &amp;nbsp;I also read that the proper SAS objects are installed on one's machine when one installs SAS. &amp;nbsp;I *suspect* that herein lies the problem. &amp;nbsp;SAS is a virtualized application in my environment. &amp;nbsp;In other words, SAS is not directly installed on my machine. &amp;nbsp;I&lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt; instantiate SAS by means of the following command: &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe" /launch "SAS Enterprise Guide 5.1_Win764bit 5.100.0.12019" C:\Users\barboujb\Documents\egp\SOC_BGAN_Report.egp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, you see, I execute sfttray.exe which causes the virtualized app, SAS in this case, to execute on my machine. &amp;nbsp;Since SAS does not reside on my machine, I suspect that the proper object(s) (&lt;SPAN&gt;SASEGObjectModel.Application.5.1 at the very least) also do not reside on my machine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I can get my SAS project to open via vbs by using the below commands, but I have not been able to get my project to automatically execute.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Set app = CreateObject("WScript.Shell")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;app.run("""C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe"" /launch ""SAS Enterprise Guide 5.1_Win764bit 5.100.0.12019"" ""C:\Users\barboujb\Documents\egp\SOC_BGAN_Report.egp""")&lt;BR /&gt;&lt;BR /&gt;I really want to be able to automate SAS projects on my machine. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;QUESTIONS:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. &amp;nbsp;Is there a way to call/invoke the proper SAS objects when one works in a virtualized environment as I do? &amp;nbsp;In other words, is there a way access&amp;nbsp;SASEGObjectModel.Application.5.1 (and other required objects) in a virtualized environment?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. &amp;nbsp;Alternatively, if I open my SAS project on my desktop using vbs commands (see above code), is there a way to cause my project to begin execution automatically?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inasmuch as more and more companies are trending to virtualized apps for ease of installation, license control, and maintenance, I would think that being able to automate SAS projects in such an environment would be a valuable thing. &amp;nbsp;I suspect that the good folks at SAS have already worked this out, but my Google searches of the various SAS sites have turned up nothing that I can identify a solution in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or hints appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim Barbour&lt;/P&gt;&lt;P&gt;aka "Confounded in California" &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;vbs script generated by SAS:&lt;/P&gt;&lt;P&gt;Option Explicit&lt;BR /&gt;Dim app&lt;/P&gt;&lt;P&gt;Call dowork&lt;/P&gt;&lt;P&gt;'shut down the app&lt;BR /&gt;If not (app Is Nothing) Then&lt;BR /&gt;app.Quit&lt;BR /&gt;Set app = Nothing&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sub dowork()&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;'----&lt;BR /&gt;' Start up Enterprise Guide using the project name&lt;BR /&gt;'----&lt;BR /&gt;Dim prjName&lt;BR /&gt;Dim prjObject&lt;/P&gt;&lt;P&gt;prjName = "C:\Users\barboujb\Documents\egp\SOC_BGAN_Report.egp" 'Project Name&lt;BR /&gt;&lt;BR /&gt;Set app = CreateObject("SASEGObjectModel.Application.5.1")&lt;BR /&gt;If Checkerror("CreateObject") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' open the project&lt;BR /&gt;'-----&lt;BR /&gt;Set prjObject = app.Open(prjName,"")&lt;BR /&gt;If Checkerror("app.Open") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' run the project&lt;BR /&gt;'-----&lt;BR /&gt;prjObject.run&lt;BR /&gt;If Checkerror("Project.run") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' Save the new project&lt;BR /&gt;'-----&lt;BR /&gt;prjObject.Save&lt;BR /&gt;If Checkerror("Project.Save") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' Close the project&lt;BR /&gt;'-----&lt;BR /&gt;prjObject.Close&lt;BR /&gt;If Checkerror("Project.Close") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;Function Checkerror(fnName)&lt;BR /&gt;Checkerror = False&lt;BR /&gt;&lt;BR /&gt;Dim strmsg&lt;BR /&gt;Dim errNum&lt;BR /&gt;&lt;BR /&gt;If Err.Number &amp;lt;&amp;gt; 0 Then&lt;BR /&gt;strmsg = "Error #" &amp;amp; Hex(Err.Number) &amp;amp; vbCrLf &amp;amp; "In Function " &amp;amp; fnName &amp;amp; vbCrLf &amp;amp; Err.Description&lt;BR /&gt;MsgBox strmsg 'Uncomment this line if you want to be notified via MessageBox of Errors in the script.&lt;BR /&gt;Checkerror = True&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;End Function&lt;/P&gt;</description>
    <pubDate>Thu, 12 Nov 2015 19:53:11 GMT</pubDate>
    <dc:creator>jimbarbour</dc:creator>
    <dc:date>2015-11-12T19:53:11Z</dc:date>
    <item>
      <title>ActiveX component can't create object</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234462#M16944</link>
      <description>&lt;P&gt;I want to run a SAS EG project using the Windows Task scheduler.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS EG very kindly generates a vbs file for me (which is listed following my "signature," below). &amp;nbsp;However, when I attempt to execute the script I get and error code of 1AD with the following error description:&lt;/P&gt;&lt;P&gt;ActiveX component can't create object&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that the vbs&amp;nbsp;command that is failing is:&lt;/P&gt;&lt;P&gt;Set app = CreateObject("SASEGObjectModel.Application.5.1")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just for fun, I tried executing a CreateObject on a different object, to wit:&lt;/P&gt;&lt;P&gt;Set app = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 20px;"&gt;Which works just fine. &amp;nbsp;In doing some Googling about, I see this type of error ("&lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt;ActiveX component can't create object") usually indicates that a particular COM object isn't registered or is otherwise unavailable. &amp;nbsp;I also read that the proper SAS objects are installed on one's machine when one installs SAS. &amp;nbsp;I *suspect* that herein lies the problem. &amp;nbsp;SAS is a virtualized application in my environment. &amp;nbsp;In other words, SAS is not directly installed on my machine. &amp;nbsp;I&lt;/SPAN&gt;&lt;SPAN style="line-height: 20px;"&gt; instantiate SAS by means of the following command: &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe" /launch "SAS Enterprise Guide 5.1_Win764bit 5.100.0.12019" C:\Users\barboujb\Documents\egp\SOC_BGAN_Report.egp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, you see, I execute sfttray.exe which causes the virtualized app, SAS in this case, to execute on my machine. &amp;nbsp;Since SAS does not reside on my machine, I suspect that the proper object(s) (&lt;SPAN&gt;SASEGObjectModel.Application.5.1 at the very least) also do not reside on my machine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I can get my SAS project to open via vbs by using the below commands, but I have not been able to get my project to automatically execute.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Set app = CreateObject("WScript.Shell")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;app.run("""C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe"" /launch ""SAS Enterprise Guide 5.1_Win764bit 5.100.0.12019"" ""C:\Users\barboujb\Documents\egp\SOC_BGAN_Report.egp""")&lt;BR /&gt;&lt;BR /&gt;I really want to be able to automate SAS projects on my machine. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;QUESTIONS:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. &amp;nbsp;Is there a way to call/invoke the proper SAS objects when one works in a virtualized environment as I do? &amp;nbsp;In other words, is there a way access&amp;nbsp;SASEGObjectModel.Application.5.1 (and other required objects) in a virtualized environment?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. &amp;nbsp;Alternatively, if I open my SAS project on my desktop using vbs commands (see above code), is there a way to cause my project to begin execution automatically?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inasmuch as more and more companies are trending to virtualized apps for ease of installation, license control, and maintenance, I would think that being able to automate SAS projects in such an environment would be a valuable thing. &amp;nbsp;I suspect that the good folks at SAS have already worked this out, but my Google searches of the various SAS sites have turned up nothing that I can identify a solution in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or hints appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim Barbour&lt;/P&gt;&lt;P&gt;aka "Confounded in California" &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;vbs script generated by SAS:&lt;/P&gt;&lt;P&gt;Option Explicit&lt;BR /&gt;Dim app&lt;/P&gt;&lt;P&gt;Call dowork&lt;/P&gt;&lt;P&gt;'shut down the app&lt;BR /&gt;If not (app Is Nothing) Then&lt;BR /&gt;app.Quit&lt;BR /&gt;Set app = Nothing&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sub dowork()&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;'----&lt;BR /&gt;' Start up Enterprise Guide using the project name&lt;BR /&gt;'----&lt;BR /&gt;Dim prjName&lt;BR /&gt;Dim prjObject&lt;/P&gt;&lt;P&gt;prjName = "C:\Users\barboujb\Documents\egp\SOC_BGAN_Report.egp" 'Project Name&lt;BR /&gt;&lt;BR /&gt;Set app = CreateObject("SASEGObjectModel.Application.5.1")&lt;BR /&gt;If Checkerror("CreateObject") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' open the project&lt;BR /&gt;'-----&lt;BR /&gt;Set prjObject = app.Open(prjName,"")&lt;BR /&gt;If Checkerror("app.Open") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' run the project&lt;BR /&gt;'-----&lt;BR /&gt;prjObject.run&lt;BR /&gt;If Checkerror("Project.run") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' Save the new project&lt;BR /&gt;'-----&lt;BR /&gt;prjObject.Save&lt;BR /&gt;If Checkerror("Project.Save") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;'-----&lt;BR /&gt;' Close the project&lt;BR /&gt;'-----&lt;BR /&gt;prjObject.Close&lt;BR /&gt;If Checkerror("Project.Close") = True Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;Function Checkerror(fnName)&lt;BR /&gt;Checkerror = False&lt;BR /&gt;&lt;BR /&gt;Dim strmsg&lt;BR /&gt;Dim errNum&lt;BR /&gt;&lt;BR /&gt;If Err.Number &amp;lt;&amp;gt; 0 Then&lt;BR /&gt;strmsg = "Error #" &amp;amp; Hex(Err.Number) &amp;amp; vbCrLf &amp;amp; "In Function " &amp;amp; fnName &amp;amp; vbCrLf &amp;amp; Err.Description&lt;BR /&gt;MsgBox strmsg 'Uncomment this line if you want to be notified via MessageBox of Errors in the script.&lt;BR /&gt;Checkerror = True&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;End Function&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2015 19:53:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234462#M16944</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2015-11-12T19:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX component can't create object</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234713#M16966</link>
      <description>&lt;P&gt;Well, I've dug deeper into this forum and other sources. &amp;nbsp;I can now create the object called for in&amp;nbsp;Set app = CreateObject("SASEGObjectModel.Application.5.1"). &amp;nbsp;The steps I took are listed below my "signature".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now unfortunately, I'm getting&amp;nbsp;error 80040417 -- Unable to connect to server: &amp;nbsp;SASApp&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This message is odd since I'm connecting to that server just fine when entering through the normal EG GUI interface. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If anyone has any insights into error 80040417, I'd be most appreciative.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I did to to get the &lt;SPAN&gt;"SASEGObjectModel.Application.5.1"&amp;nbsp;&lt;/SPAN&gt;object created is as follows:&lt;/P&gt;
&lt;P&gt;1. &amp;nbsp;Obtain a copy of&amp;nbsp;SASEGScripting.dll&lt;/P&gt;
&lt;P&gt;2. &amp;nbsp;Place&amp;nbsp;SASEGScripting.dll in the 5.1 subdirectory of your SASEnterpriseGuideDirectory&lt;/P&gt;
&lt;P&gt;3. &amp;nbsp;Run RegAsm.exe which on my machine is in&amp;nbsp;C:\Windows\Microsoft.NET\Framework\v4.0.30319\ &amp;nbsp;I'll list the fully qualified command below.&lt;/P&gt;
&lt;P&gt;4. &amp;nbsp;Run RegTypeLib.exe which on my machine is in&amp;nbsp;C:\SASHome\x86\Integration Technologies\ &amp;nbsp;&lt;SPAN&gt;I'll list the fully qualified command below.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;5. &amp;nbsp;Run your vb script file using the appropriate version of cscript.exe &amp;nbsp; I'm using a 32 bit version of SAS EG 5.1, so I used&amp;nbsp;C:\Windows\SysWOW64\cscript.exe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the fully qualified command that I ran for step 3, above:&lt;/P&gt;
&lt;P&gt;C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe /tlb:SASEGScripting.tlb /codebase "C:\SASHome\x86\SASEnterpriseGuide\5.1\SASEGScripting.dll"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After&amp;nbsp;which I received the following:&lt;/P&gt;
&lt;P&gt;Microsoft .NET Framework Assembly Registration Utility version 4.0.30319.18408&lt;BR /&gt;for Microsoft .NET Framework version 4.0.30319.18408&lt;BR /&gt;Copyright (C) Microsoft Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;Types registered successfullyTypes registered successfullyAssembly exported to 'C:\SASHome\x86\SASEnterpriseGuide\5.1\SASEGScripting.tlb', and the type library was registered successfully&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the fully qualified command that I ran for step 4, above:&lt;/P&gt;
&lt;P&gt;"C:\SASHome\x86\Integration Technologies\RegTypeLib.exe" &amp;nbsp;C:\SASHome\x86\SASEnterpriseGuide\5.1\SASEGScripting.tlb&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;After&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;which I received the following:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Registered C:\SASHome\x86\SASEnterpriseGuide\5.1\SASEGScripting.tlb OK&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 21:11:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234713#M16966</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2015-11-13T21:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: ActiveX component can't create object</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234738#M16978</link>
      <description>&lt;P&gt;In the above post, the :S (frustrated smiley) is actually a : followed by an S with no spaces in between.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 23:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/ActiveX-component-can-t-create-object/m-p/234738#M16978</guid>
      <dc:creator>jimbarbour</dc:creator>
      <dc:date>2015-11-13T23:45:24Z</dc:date>
    </item>
  </channel>
</rss>

