<?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: WaitOnEvent Timing out in Measurement Studio for .NET Languages</title>
    <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236578#M17469</link>
    <description>&lt;P&gt;Today I tried running the NI-VISA DotNET4.0&amp;nbsp; example for Service Request&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- I am still getting time out when it waits on the "WaitOnEvent"&amp;nbsp;&amp;nbsp; [Synchronous mode]&amp;nbsp;&amp;nbsp; [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;- It never runs the Handler routine&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Asynchronous mode] [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I run my VB6 code for the Service Request it runs perfectly&amp;nbsp; [Using a PCI-GPIB Card with Windows XP]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help is appreciated.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jan 2016 18:09:30 GMT</pubDate>
    <dc:creator>master9991</dc:creator>
    <dc:date>2016-01-08T18:09:30Z</dc:date>
    <item>
      <title>WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235571#M17444</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Trying to set SRQ for power meter (HP437B) via USB GPIB&amp;nbsp; VISA and waiting for event to return.&lt;/P&gt;
&lt;P&gt;When the same thing is done in VB6 it works.&lt;/P&gt;
&lt;P&gt;Under given is the code snippet in C# 2010&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;_gpibSession = null;
_gpibSession = (MessageBasedSession)ResourceManager.GetLocalManager().Open(_resourceName, AccessModes.NoLock, timeOutValue);

_gpibSession.SynchronizeCallbacks = true;
_gpibSession.Timeout = 60000;
_gpibSession.DefaultBufferSize = 65536000;

_gpibSession.TerminationCharacter = 10;
_gpibSession.TerminationCharacterEnabled = true;

_gpibSession.Write("*SRE 64");
_gpibSession.EnableEvent(_mbSrq, EventMechanism.Queue);
_gpibSession.Write("PR");		//preset
&lt;STRONG&gt;_gpibSession.WaitOnEvent(_mbSrq, 6000);          //timing out at this point&lt;/STRONG&gt;
&lt;BR /&gt;StatusByteFlags sbfStatus = _gpibSession.ReadStatusByte();

if ((sbfStatus &amp;amp; StatusByteFlags.RequestingService) != 0)
{
   MessageBox("Request Service in the status register is set.");
}
else if ((sbfStatus &amp;amp; StatusByteFlags.MessageAvailable) != 0)
{
   MessageBox("MAV in the status register is set.");
}
else if ((sbfStatus &amp;amp; StatusByteFlags.EventStatusRegister) != 0)
{
   MessageBox("ESB in the status register is set.");

   string esrValue = _gpibSession.Query("*ESR?");      //get content of event status register
}&lt;/PRE&gt;
&lt;P&gt;Any help in resolving this issue is appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:55:55 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235571#M17444</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-06T17:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235584#M17445</link>
      <description>&lt;P&gt;According to the documentation, WaitOnEvent method will throw an exception after the timeout you in put in.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you getting an exception that is thrown?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 18:41:21 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235584#M17445</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-06T18:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235679#M17452</link>
      <description>&lt;P&gt;Yes I'm getting an exception that is thrown as given under&lt;/P&gt;
&lt;P&gt;"Timeout expired before operation completed.&amp;nbsp; VISA error code -1073807339 (0xBFFF0015), ErrorTimeout"&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 22:45:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235679#M17452</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-06T22:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235688#M17453</link>
      <description>&lt;P&gt;Where did you get this code snippet?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NI has very good examples on Servest Request written in .NET 4.0 and .NET 4.5&lt;/P&gt;
&lt;P&gt;You basically register the handler for the event.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look in C:\Users\Public\Public Documents\National Instruments\NI-VISA\Examples&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 23:21:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235688#M17453</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-06T23:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235699#M17454</link>
      <description>&lt;P&gt;One thing you should note is that TerminationCharacter is for read *only*.&lt;/P&gt;
&lt;P&gt;You will need to add your own when writing to the instrument.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 23:53:40 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3235699#M17454</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-06T23:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236069#M17457</link>
      <description>&lt;P style="text-align: left;"&gt;Ok I checked for NI-VISA examples and only found C &amp;amp; VB6 code.&lt;/P&gt;
&lt;P style="text-align: left;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:11:59 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236069#M17457</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-07T17:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236074#M17458</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/67633"&gt;@master9991&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P style="text-align: left;"&gt;Ok I checked for NI-VISA examples and only found C &amp;amp; VB6 code.&lt;/P&gt;
&lt;P style="text-align: left;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Then you need to re-install NI-VISA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I highly suggest appending NewLine to your VISA write.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:21:49 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236074#M17458</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-07T17:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236089#M17460</link>
      <description>&lt;P&gt;Already did the re-install and have the new line when ever a write is done.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you send me online link to the NI-VISA .NET examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:45:19 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236089#M17460</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-07T17:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236099#M17461</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/67633"&gt;@master9991&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Already did the re-install and have the new line when ever a write is done.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you send me online link to the NI-VISA .NET examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There aren't online examples that I know of.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When installing you may want to do a custom install. It is suppose to detect that you have VB.NET installed, but you never know...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Let me repeat yet again. You may be timing out because your VISA write is not complete and your instrument is waiting for your termination character.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:58:13 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236099#M17461</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-07T17:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236106#M17462</link>
      <description>&lt;P&gt;I am indeed sending the termination character. You check the code I posted above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;_gpibSession.TerminationCharacter = 10;
_gpibSession.TerminationCharacterEnabled = true;
&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jan 2016 18:16:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236106#M17462</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-07T18:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236113#M17463</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/67633"&gt;@master9991&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I am indeed sending the termination character. You check the code I posted above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;_gpibSession.TerminationCharacter = 10;
_gpibSession.TerminationCharacterEnabled = true;
&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="4"&gt;No, you are not. I told you that above which you didn't bother to read apparently.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 18:31:55 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236113#M17463</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-07T18:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236119#M17464</link>
      <description>&lt;P&gt;I sending the same parameters in VB6 and it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have read what you said (given under) but that didn't solve my problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="messagebodydisplay_0_3" class="lia-message-body lia-component-body"&gt;
&lt;DIV class="lia-message-body-content"&gt;
&lt;P&gt;"One thing you should note is that TerminationCharacter is for read *only*.&lt;/P&gt;
&lt;P&gt;You will need to add your own when writing to the instrument."&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 07 Jan 2016 18:39:41 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236119#M17464</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-07T18:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236578#M17469</link>
      <description>&lt;P&gt;Today I tried running the NI-VISA DotNET4.0&amp;nbsp; example for Service Request&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- I am still getting time out when it waits on the "WaitOnEvent"&amp;nbsp;&amp;nbsp; [Synchronous mode]&amp;nbsp;&amp;nbsp; [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;- It never runs the Handler routine&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Asynchronous mode] [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I run my VB6 code for the Service Request it runs perfectly&amp;nbsp; [Using a PCI-GPIB Card with Windows XP]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 18:09:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236578#M17469</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-08T18:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236580#M17470</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/67633"&gt;@master9991&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Today I tried running the NI-VISA DotNET4.0&amp;nbsp; example for Service Request&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- I am still getting time out when it waits on the "WaitOnEvent"&amp;nbsp;&amp;nbsp; [Synchronous mode]&amp;nbsp;&amp;nbsp; [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;- It never runs the Handler routine&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Asynchronous mode] [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I run my VB6 code for the Service Request it runs perfectly&amp;nbsp; [Using a PCI-GPIB Card with Windows XP]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help is appreciated.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Run your VB6 code with the GPIB-USB-HS&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 18:19:45 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236580#M17470</guid>
      <dc:creator>nyc_(is_out_of_here)</dc:creator>
      <dc:date>2016-01-08T18:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: WaitOnEvent Timing out</title>
      <link>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236899#M17472</link>
      <description>&lt;P&gt;Ran VB6 code for the Service Request and it runs perfectly &amp;nbsp; [GPIB-USB-HS with Windows 7 64 bit]&lt;/P&gt;
&lt;P&gt;viStatus returns "Operation Completed Successfully"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2016 00:13:20 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Measurement-Studio-for-NET/WaitOnEvent-Timing-out/m-p/3236899#M17472</guid>
      <dc:creator>master9991</dc:creator>
      <dc:date>2016-01-09T00:13:20Z</dc:date>
    </item>
  </channel>
</rss>

