<?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: how to call a Component Object Model (COM) object in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384706#M192575</link>
    <description>&lt;DIV&gt;Yeah, I'm afraid you must get a C/C++ compiler in this case - VB, LabVIEW, C#, VB.NET - all these languages require a type library before you can use the COM component. However, you might search around to see if anyone else has already created a type library for this. When I did a brief search yesterday, I saw several discussions amoung VB programmers - which gives good chances that there is one out there.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;The other option is for you to create one yourself. That simply requires that you create an IDL file that defines the COM class (I saw segments of this in the search) and then compile the IDL file. I believe the IDL compiler is part of the Windows SDK, which is a free download.&lt;/DIV&gt;</description>
    <pubDate>Wed, 28 Jun 2006 14:33:26 GMT</pubDate>
    <dc:creator>Lycangeek</dc:creator>
    <dc:date>2006-06-28T14:33:26Z</dc:date>
    <item>
      <title>how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384025#M192304</link>
      <description>&lt;DIV&gt;Hello, &lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I am trying to call on a Component Object Model (COM) object from the shell32.dll but I don't know how. &lt;/DIV&gt;
&lt;DIV&gt;I have tired the open library function vi but don't seem to be able to get through that way.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks you your help in advance.&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Jun 2006 13:24:31 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384025#M192304</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-06-27T13:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384101#M192337</link>
      <description>&lt;DIV&gt;Use the nodes in the ActiveX palette. ActiveX is a specific type of COM, but the palette nodes work with any COM object. You can also take a look in examples/comm for examples using these nodes. Basically, you'll start with the Open Automation node to create the instance of the COM object (equivalent to the Win32 method CoCreateInstance) and then use the invoke and property nodes to access the instance.&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Jun 2006 14:54:39 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384101#M192337</guid>
      <dc:creator>Lycangeek</dc:creator>
      <dc:date>2006-06-27T14:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384191#M192377</link>
      <description>&lt;DIV&gt;Hello Brian Tyler&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I followed your instruction but I ran into another problem ~&lt;/DIV&gt;
&lt;DIV&gt;I can't find the COM with the control&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;on this website&lt;/DIV&gt;
&lt;DIV&gt;&lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_int/shell_int_programming/taskbar.asp" target="_blank"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_int/shell_int_programming/taskbar.asp&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I have found this section that I want to use:&lt;/DIV&gt;
&lt;DIV&gt;
&lt;H4&gt;&lt;A name="tbnotify_taskbarlist" target="_blank"&gt;&lt;/A&gt;Modifying the Contents of the Taskbar&lt;/H4&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/programmersguide/versions.asp" target="_blank"&gt;Version 4.71 and later&lt;/A&gt; of Shell32.dll adds the capability to modify the contents of the taskbar. From an application, you can now add, remove, and activate taskbar buttons. Activating the item does not activate the window; it shows the item as pressed on the taskbar.&lt;/P&gt;
&lt;P&gt;The taskbar modification capabilities are implemented in a Component Object Model (COM) object (CLSID_TaskbarList ) that exposes the &lt;A href="http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/reference/ifaces/itaskbarlist/itaskbarlist.asp" target="_blank"&gt;ITaskbarList&lt;/A&gt; interface (IID_ITaskbarList ). You must call the &lt;A href="http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/reference/ifaces/itaskbarlist/hrinit.asp" target="_blank"&gt;HrInit&lt;/A&gt; method to initialize the object. You can then use the methods of the &lt;A href="http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/reference/ifaces/itaskbarlist/itaskbarlist.asp" target="_blank"&gt;ITaskbarList&lt;/A&gt; interface to modify the contents of the taskbar.&lt;/P&gt;
&lt;P&gt;but I can't seen to find it.&lt;/P&gt;
&lt;P&gt;Oh and I visited your blog, it is awesome, the nano car article is cool&lt;/P&gt;
&lt;P&gt;thanks for your help &lt;/P&gt;
&lt;P&gt;Jimmy&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Jun 2006 16:29:07 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384191#M192377</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-06-27T16:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384259#M192410</link>
      <description>&lt;DIV&gt;Glad you liked the blog &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Yeah, that nano-car is almost unbelievable.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Okay, I've never used this control, so I'm not sure what type library it's defined in. I tried browing shell32.dll and comctl32.dll, but neither had it. I did some googling on CLSID_TaskbarList, but everything I found seems to indicate that there isn't a type library already built for it. Unfortunately, if it doesn't have a type library, you can't use it in LabVIEW. However, since so many people use it, you might be able to find an example program with an IDL defined for it. That can create a typelib.&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Jun 2006 18:32:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384259#M192410</guid>
      <dc:creator>Lycangeek</dc:creator>
      <dc:date>2006-06-27T18:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384435#M192470</link>
      <description>&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/40398"&gt;@Lycangeek&lt;/a&gt; wrote:&lt;BR /&gt;&lt;DIV&gt;Glad you liked the blog &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Yeah, that nano-car is almost unbelievable.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Okay, I've never used this control, so I'm not sure what type
library it's defined in. I tried browing shell32.dll and comctl32.dll,
but neither had it. I did some googling on CLSID_TaskbarList, but
everything I found seems to indicate that there isn't a type library
already built for it. Unfortunately, if it doesn't have a type library,
you can't use it in LabVIEW. However, since so many people use it, you
might be able to find an example program with an IDL defined for it.
That can create a typelib.&lt;/DIV&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;Lots of shell32
objects are rather rudimentar COM objects, using COM infrastructure but
not implementing enough to be a real ActiveX object. Most also simply
lack any typelib definition anywhere so won't be usable from any
browsable ActiveX implementation like LabVIEW or Visual Basic anyhow.&lt;BR /&gt;
&lt;BR /&gt;
Rolf Kalbermatter&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 28 Jun 2006 05:47:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384435#M192470</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2006-06-28T05:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384597#M192526</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello &lt;/P&gt;
&lt;P&gt;so following that thought, I would have to start some c code, but I don't have&amp;nbsp;a c compiler, would labview be able to compile c code? My guess is no. So there is no way I can make this thing work then&lt;img id="smileymad" class="emoticon emoticon-smileymad" src="https://ni.lithium.com/i/smilies/16x16_smiley-mad.gif" alt="Smiley Mad" title="Smiley Mad" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2006 12:47:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384597#M192526</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-06-28T12:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384706#M192575</link>
      <description>&lt;DIV&gt;Yeah, I'm afraid you must get a C/C++ compiler in this case - VB, LabVIEW, C#, VB.NET - all these languages require a type library before you can use the COM component. However, you might search around to see if anyone else has already created a type library for this. When I did a brief search yesterday, I saw several discussions amoung VB programmers - which gives good chances that there is one out there.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;The other option is for you to create one yourself. That simply requires that you create an IDL file that defines the COM class (I saw segments of this in the search) and then compile the IDL file. I believe the IDL compiler is part of the Windows SDK, which is a free download.&lt;/DIV&gt;</description>
      <pubDate>Wed, 28 Jun 2006 14:33:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384706#M192575</guid>
      <dc:creator>Lycangeek</dc:creator>
      <dc:date>2006-06-28T14:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384716#M192582</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/65398"&gt;@slingee&lt;/a&gt; wrote:&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello &lt;/P&gt;
&lt;P&gt;so following that thought, I would have to start some c code, but I
don't have&amp;nbsp;a c compiler, would labview be able to compile c code?
My guess is no. So there is no way I can make this thing work
then&lt;img id="smileymad" class="emoticon emoticon-smileymad" src="https://ni.lithium.com/i/smilies/16x16_smiley-mad.gif" alt="Smiley Mad" title="Smiley Mad" /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;LabVIEW is not a C compiler. So
you will need another software (Visual C, Borland C, possibly MingW
based compiler) if you want to do this.&lt;BR /&gt;
&lt;BR /&gt;
Another possibility is to look for a LabVIEW Toolkit that does all this
for you. There are two possibilities I know of:&lt;BR /&gt;
&lt;BR /&gt;
- George Zou's library at
http://www.geocities.com/gzou999/&lt;BR /&gt;
&lt;BR /&gt;
- Inventeerings InvTray Toolkit at http://www.inventeering.com/Product_INVtray.html&lt;BR /&gt;
&lt;BR /&gt;
Rolf Kalbermatter&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Message Edited by rolfk on &lt;SPAN class="date_text"&gt;06-28-2006&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;04:47 PM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2006 14:42:09 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/384716#M192582</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2006-06-28T14:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393319#M196303</link>
      <description>&lt;DIV&gt;hello &lt;/DIV&gt;
&lt;DIV&gt;It's been a while, but, here&amp;nbsp;I&amp;nbsp;am again.&lt;/DIV&gt;
&lt;DIV&gt;I don't know what to do after I've got the IDL file. I can't install the window sdk into my company computer. Is there another way to get this working Brian?&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Jul 2006 12:54:57 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393319#M196303</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-07-19T12:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393466#M196358</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I compiled the IDL for you, but I had to remove the IUnknownVB since that would not compile - and I'm not sure why you'd need it.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I'm afraid after this, you're off the trail and into the underbrush...good luck!&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Jul 2006 15:52:10 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393466#M196358</guid>
      <dc:creator>Lycangeek</dc:creator>
      <dc:date>2006-07-19T15:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393480#M196364</link>
      <description>&lt;DIV&gt;Thanks a bunch, &lt;/DIV&gt;
&lt;DIV&gt;I would give that a shot, but if I am going into the underbush, Thanks for the bush Knife&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://ni.lithium.com/i/smilies/16x16_smiley-very-happy.gif" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Jul 2006 16:13:41 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393480#M196364</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-07-19T16:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393581#M196408</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello again:&lt;/P&gt;
&lt;P&gt;Brian I thought I don't have&amp;nbsp;to bug you again but I was wrong &lt;/P&gt;
&lt;P&gt;I can't register the type library &lt;/P&gt;
&lt;P&gt;&lt;A href="http://digital.ni.com/public.nsf/allkb/4F811A9B23F1D46E862566F700615B7A?OpenDocument" target="_blank"&gt;http://digital.ni.com/public.nsf/allkb/4F811A9B23F1D46E862566F700615B7A?OpenDocument&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;didn't work. I tried to google up some methods and that doesn't work either. and then I tried hitting straight with Call Library Function and the whole labview shuts on me.&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://ni.lithium.com/i/smilies/16x16_smiley-sad.gif" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2006 19:10:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393581#M196408</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-07-19T19:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393594#M196415</link>
      <description>&lt;DIV&gt;Well, you don't need to register the typelib - you can simply browse to it from the ActiveX selection dialog. The COM component itself (the shell) is already registered. I dropped an invoke node and selected the interface and was able to see the methods.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;DON'T use Call Library node - use the ActiveX palette only for these things. If you need to call one of the Shell Win32 methods, however, you do use the Call Library Node.&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Jul 2006 19:34:27 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/393594#M196415</guid>
      <dc:creator>Lycangeek</dc:creator>
      <dc:date>2006-07-19T19:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/403745#M200497</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello Brian,&lt;/P&gt;
&lt;P&gt;It's been a while but I have been away, so I might be much to ask. But here it is:&lt;/P&gt;
&lt;P&gt;I am just wondering if you could tell me which reference I should use for the invoke node that I call these by?&lt;/P&gt;
&lt;P&gt;thanks &lt;/P&gt;
&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2006 15:31:46 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/403745#M200497</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-08-14T15:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/403800#M200521</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I'm not sure what you are asking. You need to call the Automation Open node on the shell CoClass that you want, and then you can pass that refnum into the invoke node. ??? What exactly are you looking for?&lt;/DIV&gt;</description>
      <pubDate>Mon, 14 Aug 2006 16:50:12 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/403800#M200521</guid>
      <dc:creator>Lycangeek</dc:creator>
      <dc:date>2006-08-14T16:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to call a Component Object Model (COM) object</title>
      <link>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/403822#M200531</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Oh I am actually trying to get this to work.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;You see if this works Brian I can get rid of the extra tab or any tab that I don't need.&lt;/DIV&gt;
&lt;DIV&gt;I don't really understand that shell co class part&lt;/DIV&gt;</description>
      <pubDate>Mon, 14 Aug 2006 17:28:52 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/how-to-call-a-Component-Object-Model-COM-object/m-p/403822#M200531</guid>
      <dc:creator>slingee</dc:creator>
      <dc:date>2006-08-14T17:28:52Z</dc:date>
    </item>
  </channel>
</rss>

