<?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: Does LabVIEW support Shared Memory File created by VC++? in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118854#M71663</link>
    <description>I am trying to find this thread but cannot find it with a search. Where exactly is it?? Thanks,&lt;BR /&gt;Dave &lt;BR /&gt;</description>
    <pubDate>Wed, 10 Mar 2004 14:43:53 GMT</pubDate>
    <dc:creator>dirtyb15</dc:creator>
    <dc:date>2004-03-10T14:43:53Z</dc:date>
    <item>
      <title>Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118850#M71659</link>
      <description>Can LabVIEW program read and write online data stored in a Shared Memory File created by a VC++ application using Windows SDK Functions: CreateFileMapping, OpenFileMapping, MapViewOfFile ... when both programs are running?  If yes, how? What vis? Any examples?&lt;BR /&gt;&lt;BR /&gt;Thank you very much.&lt;BR /&gt;Stars &lt;BR /&gt;</description>
      <pubDate>Sat, 14 Feb 2004 13:28:06 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118850#M71659</guid>
      <dc:creator>Stars</dc:creator>
      <dc:date>2004-02-14T13:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118851#M71660</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;&lt;BR /&gt;LabVIEW doesnt have direct support for memory mapped files. The only way you would be able to set this up is via dll calls that call the functions. Check out the following &lt;A href="https://www.ni.com/docs/en-US/bundle/370109b/resource/370109b.pdf" target="_self"&gt;manual&lt;/A&gt; for more information on how dll's work with LV.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Bilal Durrani&lt;BR /&gt;NI &lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 22:52:11 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118851#M71660</guid>
      <dc:creator>bilalD</dc:creator>
      <dc:date>2025-07-18T22:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118852#M71661</link>
      <description>I am having trouble trying to do this also. I have a c++ program that is creating and writing to a shared memory location.  I know that it is working correctly becuase i read off that memory with several other apps. I tried writing a dll with the same read code, but Labview Crashes Everytime I run it. &lt;BR /&gt;Attached is a simple dll example i tried to trys to read one element out of and array.(The arrays has 40 elements.)  Anyone have any suggestions? (This is just the read mind you.) &lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2004 14:37:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118852#M71661</guid>
      <dc:creator>dirtyb15</dc:creator>
      <dc:date>2004-03-09T14:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118853#M71662</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;You're in luck. Just a few weeks ago I created VI's to read and write memory&lt;BR /&gt;mapped files!&lt;BR /&gt;&lt;BR /&gt;I've tested it with interaction between several LV applications (.exe) and&lt;BR /&gt;mixed it with several instances of LV, and that worked fine (see thread&lt;BR /&gt;"Communitating Between Built LV App.s"). The VI's are there to download.&lt;BR /&gt;&lt;BR /&gt;The difficult part is to get LV to write into memory. If you only want to&lt;BR /&gt;write a string, it's easy, but for data (with \00 in it) it's a bit more&lt;BR /&gt;difficult. Anyway, the VI's already have that functionality.&lt;BR /&gt;&lt;BR /&gt;The VI's are written to interact between LV applications, but everything to&lt;BR /&gt;interact with other applications is in there. Perhaps some things turn up,&lt;BR /&gt;but I'm sure they are all solvable.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Wiebe.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"Stars" &lt;X&gt; wrote in message&lt;BR /&gt;n&lt;BR /&gt;ews:50650000000800000058BF0000-1075935269000@exchange.ni.com...&lt;BR /&gt;&amp;gt; Can LabVIEW program read and write online data stored in a Shared&lt;BR /&gt;&amp;gt; Memory File created by a VC++ application using Windows SDK Functions:&lt;BR /&gt;&amp;gt; CreateFileMapping, OpenFileMapping, MapViewOfFile ... when both&lt;BR /&gt;&amp;gt; programs are running?  If yes, how? What vis? Any examples?&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt; Thank you very much.&lt;BR /&gt;&amp;gt; Stars &lt;BR /&gt;&lt;/X&gt;</description>
      <pubDate>Wed, 10 Mar 2004 09:08:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118853#M71662</guid>
      <dc:creator>Wiebe@CARYA</dc:creator>
      <dc:date>2004-03-10T09:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118854#M71663</link>
      <description>I am trying to find this thread but cannot find it with a search. Where exactly is it?? Thanks,&lt;BR /&gt;Dave &lt;BR /&gt;</description>
      <pubDate>Wed, 10 Mar 2004 14:43:53 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118854#M71663</guid>
      <dc:creator>dirtyb15</dc:creator>
      <dc:date>2004-03-10T14:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118855#M71664</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I accidentally send it as a new post, sorry for that. Here is the link to&lt;BR /&gt;the discussion:&lt;BR /&gt;&lt;BR /&gt;http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&amp;amp;RPAGEID=135&amp;amp;HOID=5065000000080000005BC10000&amp;amp;UCATEGORY_0=_49_%24_6_&amp;amp;UCATEGORY_S=0&amp;amp;USEARCHCONTEXT_QUESTION_0=Communicating+Between+Built+LV+App&amp;amp;USEARCHCONTEXT_QUESTION_S=0&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Wiebe.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"dirtyb15" &lt;X&gt; wrote in message&lt;BR /&gt;news:506500000005000000DD660100-1078497998000@exchange.ni.com...&lt;BR /&gt;&amp;gt; I am trying to find this thread but cannot find it with a search.&lt;BR /&gt;&amp;gt; Where exactly is it?? Thanks,&lt;BR /&gt;&amp;gt; Dave &lt;BR /&gt;&lt;/X&gt;</description>
      <pubDate>Tue, 13 Apr 2004 11:08:31 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/118855#M71664</guid>
      <dc:creator>Wiebe@CARYA</dc:creator>
      <dc:date>2004-04-13T11:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/1772032#M615560</link>
      <description>&lt;P&gt;Is there any actual thrad with the vis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thx&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2011 09:44:39 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/1772032#M615560</guid>
      <dc:creator>Andreas_HTW</dc:creator>
      <dc:date>2011-11-11T09:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Does LabVIEW support Shared Memory File created by VC++?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/3752435#M1056528</link>
      <description>&lt;P&gt;I can't find the link. Can you re-post the link?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 05:36:32 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Does-LabVIEW-support-Shared-Memory-File-created-by-VC/m-p/3752435#M1056528</guid>
      <dc:creator>Prabsun</dc:creator>
      <dc:date>2018-02-08T05:36:32Z</dc:date>
    </item>
  </channel>
</rss>

