<?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: Windows Message Queue 64-Bit Support in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2416962#M746292</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/251960"&gt;@Emily-C&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Hoovah,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you running into specific issues in your application where LabVIEW events don't meet your needs?&lt;SPAN style="line-height: 15px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes specifically when it is not a LabVIEW front panel that I am trying to detect changes to. &amp;nbsp;I would like to be able to detect when a window is resized like Notepad. &amp;nbsp;Something not LabVIEW. &amp;nbsp;This is possible with the Windows Message Queue Library but not with LabVIEW events.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I may have a solution anyway and I'll need more time to test, but I can put this other window (Notepad for example) into a VI, then remove the ability to resize Notepad, but instead resize Notepad when the VI it is in gets resized. &amp;nbsp;Then I can detect when the window is resized because I can be detecting a Panel Size? event (or Pane) on the VI that Notepad is in. &amp;nbsp;This is alot of extra headache and things to keep track of but do able. &amp;nbsp;But this also adds other flexibilities that I think I may prefer.&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2013 21:35:16 GMT</pubDate>
    <dc:creator>Hooovahh</dc:creator>
    <dc:date>2013-05-07T21:35:16Z</dc:date>
    <item>
      <title>Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2413098#M745527</link>
      <description>&lt;P data-unlink="true"&gt;Just wondering if the Windows Message Queue&amp;nbsp;will ever be updated to support 64-bit Windows? &amp;nbsp;It is some really neat low level tools on windows but only works fully in 32 bit Windows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm looking to detect when a window is resized, or has a mouse down event, based on its HWND not VI reference. &amp;nbsp;This is very easy to do with this library if you don't use 64 bit Windows. &amp;nbsp;Any other tips on accomplishing this is appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: &amp;nbsp;Attatched is a VI that runs in LabVIEW 2011 32 bit. &amp;nbsp;On Windows 7 64-bit the "WM_Size" is not generated when the panel is resized. &amp;nbsp;The mouse event does get generated for some reason. (this VI relies on VIs in the library linked earlier)&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 00:23:06 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2413098#M745527</guid>
      <dc:creator>Hooovahh</dc:creator>
      <dc:date>2025-12-18T00:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2414936#M745894</link>
      <description>&lt;P&gt;Hi Hoovah,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm glad to see you like the low level tools offered by the Windows Message Queue library! Unfortunately, we don't know ahead of time what new libraries will be released. I can't offer any timeline for if the library will ever be supported in 64-bit Windows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you worked with &lt;A href="https://www.ni.com/en/support/documentation/supplemental/06/event-driven-programming-in-labview.html" target="_self"&gt;Event-Driven Programming in LabVIEW&lt;/A&gt; before? There are event options for mouse events, as well as a &lt;A href="https://www.ni.com/docs/en-US/bundle/labview-api-ref/page/properties-and-methods/vi-server/generic/gobject/pane/notify/panesize.html" target="_self"&gt;Pane Size Event&lt;/A&gt;. You could use an event structure and a few different events to create an application that would react to mouse movements and window resizing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 00:23:46 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2414936#M745894</guid>
      <dc:creator>Emily-C</dc:creator>
      <dc:date>2025-12-18T00:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2415198#M745942</link>
      <description>&lt;P&gt;Yes I'm familiar with Event Driven architectures but in my post I explicitly mentioned how I wanted to reference a window by HWND and not VI Reference. &amp;nbsp;But also there user events and dynamic registering of events do not replacte all the functionality in this library. &amp;nbsp;The obvious one is the mouse scroll event. &amp;nbsp;In LabVIEW the only thing that can be done is polling the mouse every x number of milliseconds to see if the scroll happened.&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2013 20:56:57 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2415198#M745942</guid>
      <dc:creator>Hooovahh</dc:creator>
      <dc:date>2013-05-06T20:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2416308#M746161</link>
      <description>&lt;P&gt;Hi Hoovah,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm sorry, I saw that you said you would like to use HWND, but since that library isn't supported in Windows 64 bit I was trying to offer a possible work-around. I understand that the LabVIEW events can't do exactly what the Windows Message Queue library can, but if you give me more information we can try to make them work for your application. Are you running into specific issues in your application where LabVIEW events don't meet your needs?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As well, the underlying DLL code is offered on our website for the Windows Message Queue Library. If you are comfortable in C++, you could try to modify the DLL to offer the functions you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know if I can offer any further assistance. Thanks,&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2013 14:40:00 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2416308#M746161</guid>
      <dc:creator>Emily-C</dc:creator>
      <dc:date>2013-05-07T14:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2416962#M746292</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/251960"&gt;@Emily-C&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Hoovah,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you running into specific issues in your application where LabVIEW events don't meet your needs?&lt;SPAN style="line-height: 15px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes specifically when it is not a LabVIEW front panel that I am trying to detect changes to. &amp;nbsp;I would like to be able to detect when a window is resized like Notepad. &amp;nbsp;Something not LabVIEW. &amp;nbsp;This is possible with the Windows Message Queue Library but not with LabVIEW events.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I may have a solution anyway and I'll need more time to test, but I can put this other window (Notepad for example) into a VI, then remove the ability to resize Notepad, but instead resize Notepad when the VI it is in gets resized. &amp;nbsp;Then I can detect when the window is resized because I can be detecting a Panel Size? event (or Pane) on the VI that Notepad is in. &amp;nbsp;This is alot of extra headache and things to keep track of but do able. &amp;nbsp;But this also adds other flexibilities that I think I may prefer.&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2013 21:35:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2416962#M746292</guid>
      <dc:creator>Hooovahh</dc:creator>
      <dc:date>2013-05-07T21:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2417066#M746308</link>
      <description>&lt;P&gt;Use a .net text box.&amp;nbsp; It's&amp;nbsp;similar to&amp;nbsp;Notepad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2013 23:31:28 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2417066#M746308</guid>
      <dc:creator>zou</dc:creator>
      <dc:date>2013-05-07T23:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2417632#M746408</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/932"&gt;@zou&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Use a .net text box.&amp;nbsp; It's&amp;nbsp;similar to&amp;nbsp;Notepad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thanks for the tip, but Notepad was just an example. &amp;nbsp;What about the DMM Soft Front Panel? or Excel? &amp;nbsp;Or MSPaint? &amp;nbsp;Skype? Task Manager? 7-Zip? Explorer Window? Calculator?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using this library it is easy to know when any window in the system is resized, or had any other event take place that is supported by it.&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2013 12:33:35 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2417632#M746408</guid>
      <dc:creator>Hooovahh</dc:creator>
      <dc:date>2013-05-08T12:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2417998#M746478</link>
      <description>&lt;P&gt;Hi Hooovahh,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your feedback. Unfortunately at this point in time I can't offer a workaround that will do exactly what you want in 64 bit. If you're interested in seeing this in the future, please post a suggestion on the Idea Exchange:&amp;nbsp;&lt;A href="https://ni.lithium.com/t5/ideas/v2/ideaexchangepage/blog-id/labviewideas" target="_blank"&gt;http://forums.ni.com/t5/ideas/v2/ideaexchangepage/blog-id/labviewideas&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2013 15:27:23 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/2417998#M746478</guid>
      <dc:creator>Emily-C</dc:creator>
      <dc:date>2013-05-08T15:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3090820#M883878</link>
      <description>&lt;P&gt;For anyone interested in this I posted 32-bit and 64-bit version of this library&amp;nbsp;&lt;A href="https://decibel.ni.com/content/docs/DOC-41403" target="_blank"&gt;here&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2015 19:43:34 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3090820#M883878</guid>
      <dc:creator>domasm</dc:creator>
      <dc:date>2015-02-17T19:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3090826#M883880</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/268354"&gt;@domasm&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;For anyone interested in this I posted 32-bit and 64-bit version of this library&amp;nbsp;&lt;A href="https://decibel.ni.com/content/docs/DOC-41403" target="_blank"&gt;here&lt;/A&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's a nice library. &amp;nbsp;Kudos&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2015 20:06:42 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3090826#M883880</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2015-02-17T20:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3545840#M992860</link>
      <description>&lt;P&gt;Hallo, the link is not working any more. How is it possible to download the updated library? Many thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 10:07:59 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3545840#M992860</guid>
      <dc:creator>Marco_Ge</dc:creator>
      <dc:date>2016-11-22T10:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3546134#M992974</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Link is correct, the same link comes up in NI search. I have checked cached copy by Google, but the link to zip file isn't working either. Basically it looks like NI Community pages are having big issues. &lt;A href="https://dl.dropboxusercontent.com/u/30912947/Misc/Windows%20Messages%20for%20Labview.zip" target="_blank"&gt;Here is direct link to my dropbox.&lt;/A&gt;. Hope it's the last version. Please be aware that I made complete switch to C# and do not develop/maintain this library anymore.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 18:12:36 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3546134#M992974</guid>
      <dc:creator>Domas</dc:creator>
      <dc:date>2016-11-22T18:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3546137#M992975</link>
      <description>&lt;P&gt;Looks like I have multiple accounts or whatever, never mind.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2016 18:14:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3546137#M992975</guid>
      <dc:creator>Domas</dc:creator>
      <dc:date>2016-11-22T18:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3546404#M993042</link>
      <description>&lt;P&gt;Thank you Domas for your kind and fast reply.&lt;/P&gt;&lt;P&gt;I've downloaded it and I'm going to include your library into my project.&lt;/P&gt;&lt;P&gt;Have a nice day.&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2016 08:10:59 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3546404#M993042</guid>
      <dc:creator>Marco_Ge</dc:creator>
      <dc:date>2016-11-23T08:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3630941#M1019331</link>
      <description>&lt;P&gt;hey,&lt;BR /&gt;&lt;BR /&gt;can anybody please re-upload the 64-bit library?&lt;/P&gt;
&lt;P&gt;both the&amp;nbsp;&lt;A href="https://decibel.ni.com/content/docs/DOC-41403" target="_blank"&gt;DOC link&lt;/A&gt;&amp;nbsp;as well as the dropbox link dont work anymore.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;many thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 09:18:47 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3630941#M1019331</guid>
      <dc:creator>qpais</dc:creator>
      <dc:date>2017-05-18T09:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3632050#M1019695</link>
      <description>&lt;P&gt;&lt;A href="https://www.dropbox.com/s/ukuutyrasj9bnyg/Windows%20Messages%20for%20Labview.zip?dl=1" target="_blank"&gt;new dropbox link&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First time it was NI that broke stuff, now dropbox ended support for public folders.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 16:31:17 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3632050#M1019695</guid>
      <dc:creator>Domas</dc:creator>
      <dc:date>2017-05-19T16:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3884793#M1101446</link>
      <description>&lt;P&gt;Is there a reason the zip isn't just attached here?&amp;nbsp; I've downloaded the zip from your dropbox and have attached it.&amp;nbsp; When searching for this topic in Google this thread is one of the first ones, after the older 32 bit only one of course.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 13:57:46 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3884793#M1101446</guid>
      <dc:creator>Hooovahh</dc:creator>
      <dc:date>2019-01-22T13:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3999277#M1142376</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;Nevermind&lt;/STRIKE&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 10:36:53 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/3999277#M1142376</guid>
      <dc:creator>Intaris</dc:creator>
      <dc:date>2019-12-12T10:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/4207693#M1219014</link>
      <description>&lt;P&gt;Hi Hooovahh,&lt;BR /&gt;&lt;BR /&gt;I'm trying to register for event 0x0219 WM_DEVICECHANGE but it doesn't seem to work. Any idea?&amp;nbsp;&lt;BR /&gt;Thanks in advance for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 12:09:56 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/4207693#M1219014</guid>
      <dc:creator>madview</dc:creator>
      <dc:date>2022-02-02T12:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Message Queue 64-Bit Support</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/4207716#M1219023</link>
      <description>&lt;P&gt;I didn't develop this code I just reattached the post by Domas.&amp;nbsp; My knowledge on these type of subjects is limited and I wouldn't know how to help.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 14:24:15 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Windows-Message-Queue-64-Bit-Support/m-p/4207716#M1219023</guid>
      <dc:creator>Hooovahh</dc:creator>
      <dc:date>2022-02-02T14:24:15Z</dc:date>
    </item>
  </channel>
</rss>

