<?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: .net Frameworks in LabVIEW in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609245#M782885</link>
    <description>&lt;P&gt;I've figured out how to get it in, call up property and invoke nodes, pass data around etc. What I'm having a hard time with is figuring out when to use property node vs invoke node, how to access some of the other .net functions that seem simple in other languages (java's io.FileOutputStream for example) and things like that. I do have some examples to work from in other languages (VB, java and some C#), but transfering these to LV seems to be ... problematic.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&amp;nbsp; The sample java code for example says it returns a string. Invoke node of (I think) the same function in LV returns a reference. Trying to change this reference to a string gives either nonsense or the reference name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: Thanks for the link. I am not sure how I didn't stumble across it in searching, but it looks like it will help.&lt;/P&gt;</description>
    <pubDate>Fri, 01 Nov 2013 20:07:14 GMT</pubDate>
    <dc:creator>Aalenox</dc:creator>
    <dc:date>2013-11-01T20:07:14Z</dc:date>
    <item>
      <title>.net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609199#M782871</link>
      <description>&lt;P&gt;I&amp;nbsp;find myself needing to edit .pdf files in LabVIEW (automatically fill in forms), which requires the use of the iTextSharp.dll - which happens to be a .net framework. To do JUST this seems fairly simple using the .dll, but unfortunately I have never worked with this before in any language, let alone LabVIEW. As I am going through, calling functions etc I am having a hard time keeping track of what exactly is going on (references aren't data as I'm used to dealing with it, using output.streams, etc etc.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My question is:&amp;nbsp; does anyone know of any good&amp;nbsp;writeups or introductions to this in general?&amp;nbsp; Hopefully with LV specific discussions. I have spent awhile searching online, but most of what I have found assumes a higher level of knowledge than I seem to have.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 19:45:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609199#M782871</guid>
      <dc:creator>Aalenox</dc:creator>
      <dc:date>2013-11-01T19:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609233#M782882</link>
      <description>&lt;P&gt;If you can find some information in e.g. C#, it's rather easy to translate, but in general you use a .net contructor and then a series of property nodes and invoke nodes.&lt;/P&gt;
&lt;P&gt;/Y&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 19:59:50 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609233#M782882</guid>
      <dc:creator>Yamaeda</dc:creator>
      <dc:date>2013-11-01T19:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609241#M782884</link>
      <description>&lt;P&gt;Hello Aalenox,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This looks to be a good place to get started:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NI Community: Calling .NET Assemblies from LabVIEW&lt;/P&gt;
&lt;P&gt;&lt;A href="https://decibel.ni.com/content/docs/DOC-9138" target="_blank"&gt;https://decibel.ni.com/content/docs/DOC-9138&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are quite a few LabVIEW-specific examples linked there, and the material is arranged in a pretty logical fashion.&amp;nbsp; Hope that helps!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 20:04:39 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609241#M782884</guid>
      <dc:creator>0utlaw</dc:creator>
      <dc:date>2013-11-01T20:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609245#M782885</link>
      <description>&lt;P&gt;I've figured out how to get it in, call up property and invoke nodes, pass data around etc. What I'm having a hard time with is figuring out when to use property node vs invoke node, how to access some of the other .net functions that seem simple in other languages (java's io.FileOutputStream for example) and things like that. I do have some examples to work from in other languages (VB, java and some C#), but transfering these to LV seems to be ... problematic.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&amp;nbsp; The sample java code for example says it returns a string. Invoke node of (I think) the same function in LV returns a reference. Trying to change this reference to a string gives either nonsense or the reference name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: Thanks for the link. I am not sure how I didn't stumble across it in searching, but it looks like it will help.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 20:07:14 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609245#M782885</guid>
      <dc:creator>Aalenox</dc:creator>
      <dc:date>2013-11-01T20:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609249#M782887</link>
      <description>&lt;P&gt;Look at the link after my name.&amp;nbsp; It is with iTextSharp 4.1.6.&amp;nbsp; This will give you some ideas how to deal with iTextSharp and LabVIEW.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 20:12:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609249#M782887</guid>
      <dc:creator>J-M</dc:creator>
      <dc:date>2013-11-01T20:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609253#M782888</link>
      <description>&lt;P&gt;I have actually downloaded, installed,&amp;nbsp;and gone through part of that libray. It is one of the reasons I was looking for some more&amp;nbsp;general information on .net frameworks as I wasn't knowledgable enough to quite follow what was going on in a lot of those functions and calls.&amp;nbsp; It will hopefully help me quite a bit later &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 20:11:19 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609253#M782888</guid>
      <dc:creator>Aalenox</dc:creator>
      <dc:date>2013-11-01T20:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609259#M782890</link>
      <description>&lt;P&gt;If you have questions, feel free to ask.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 20:14:00 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609259#M782890</guid>
      <dc:creator>J-M</dc:creator>
      <dc:date>2013-11-01T20:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609277#M782896</link>
      <description>&lt;P&gt;Well since you are offering...&amp;nbsp; the point I threw up my hands and decided research .NET framweorks was specifically when I tried replicating one of the simple examples on the &lt;A href="http://itextpdf.com/examples" target="_blank"&gt;http://itextpdf.com/examples&lt;/A&gt; page. The iTextSharp is not a small library, and I quickly found myself trying to find stuff, having no idea when to use property vs invoke node, or even how to call some of the functions that are in the .dll&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&amp;nbsp; opening a constructor node for the AeroFields (iTextSharp.text.pdf) won't even open.&amp;nbsp; I can make a reference to it, feed it in to either a property or invoke node and have access to some of the functions - but with no ability to feed it any data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess just a rough idea of when to use what (constructor, invoke, property etc)&amp;nbsp;and simple layouts to navigate through the framework and actually pull out useful information would be enough. I realize I'm asking for very vague information, because I don't even know enough yet to ask for something specific.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 20:25:49 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609277#M782896</guid>
      <dc:creator>Aalenox</dc:creator>
      <dc:date>2013-11-01T20:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609387#M782929</link>
      <description>&lt;P&gt;Perhaps, explain the much detail as possible what you want to do.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 21:52:43 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609387#M782929</guid>
      <dc:creator>J-M</dc:creator>
      <dc:date>2013-11-01T21:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609477#M782947</link>
      <description>&lt;P&gt;Sorry for the delayed response - I had to step away from the computer for awhile. &amp;nbsp;Basically, all that needs to happen is load a .pdf, find what forms are available, populate those forms with data from the program, and resave the .pdf.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like the functions I need to call from the .dll are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PdfReader (open pdf from string path)&lt;/P&gt;
&lt;P&gt;AcroFields (get and set the open fields)&lt;/P&gt;
&lt;P&gt;PdfStamper (actually change the fields)&lt;/P&gt;
&lt;P&gt;and PdfWriter&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It also appears I need a system output stream. &amp;nbsp;Everything I have learned so far makes this seem like it will be fairly simple once I learn enough.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: To make it simpler, the only type of field I will have to deal with is a text field. No radio buttons or anything.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2013 23:24:41 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609477#M782947</guid>
      <dc:creator>Aalenox</dc:creator>
      <dc:date>2013-11-01T23:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609687#M782994</link>
      <description>&lt;P&gt;You always need to keep MSDN open, ofc. According to&amp;nbsp;&lt;A href="http://msdn.microsoft.com/en-us/library/system.io.stream(v=vs.110).aspx" target="_self"&gt;MSDN Streams&lt;/A&gt;&amp;nbsp;you create a filestream object through the mscorlib -&amp;gt; system.io. (when looking for how to create objects in LV it's the Assemblies you see in the list)&lt;/P&gt;
&lt;P&gt;Contructor of such an object is attached.&lt;/P&gt;
&lt;P&gt;/Y&lt;/P&gt;</description>
      <pubDate>Sat, 02 Nov 2013 11:45:24 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609687#M782994</guid>
      <dc:creator>Yamaeda</dc:creator>
      <dc:date>2013-11-02T11:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609823#M783022</link>
      <description>&lt;P&gt;I have another version of Exaprom PDF installed and I don't have the time to switch version.&amp;nbsp; Basically, this part&amp;nbsp; is the same in the two versions but the images could be different.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example within the Exaprom PDF library has, in fact, two major steps:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Create a PDF file (without footer, header, and watermark)&lt;/P&gt;
&lt;P&gt;&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; a) create a PDF file name “File A”;&lt;/P&gt;
&lt;P&gt;&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; b) add everything except footer, header, and watermark;&lt;/P&gt;
&lt;P&gt;&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; c) close “File A”,&lt;/P&gt;
&lt;P&gt;2) Overwriting the footer, the header, and the watermark&lt;/P&gt;
&lt;P&gt;&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; a) Read “File A” (with &lt;U&gt;&lt;STRONG&gt;pdfreader&lt;/STRONG&gt;&lt;/U&gt;);&lt;/P&gt;
&lt;P&gt;&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; b) overwrite the footer, the header, and the watermark (with &lt;STRONG&gt;&lt;U&gt;pdfstamper&lt;/U&gt;&lt;/STRONG&gt;);&lt;/P&gt;
&lt;P&gt;&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; c) Close “File A”.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you open "Close PDF.vi", you will find a vi named "Append Header, Footer and Watermark.vi".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/dec44b992c7011b27bfcf82a1fda7a7aea322174/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f31323435323169313438324445394431323543423534302f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="Close PDF.jpg" title="Close PDF.jpg" align="middle" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Open "Append Header, Footer and Watermark.vi".&amp;nbsp; On the block diagram you will find a vi named "Open PDFStamper.vi"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/8c9f6a6ca9bf31b36eec6e49b9d5910c3695a9ff/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f31323435323369343745453337384143433542303139412f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="Open PDFStamper.jpg" title="Open PDFStamper.jpg" align="middle" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Open "Open PDFStamper.vi"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/268ec5fd341f3e33669bf0263161ff7c399aed62/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f31323435323569463431393130363639463331393944412f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="Block diagram Open PDFStamper.jpg" title="Block diagram Open PDFStamper.jpg" align="middle" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) You have here your "PdfReader";&lt;/P&gt;
&lt;P&gt;2) If the PDF document has more than 1 page, you need this information;&lt;/P&gt;
&lt;P&gt;3) You create a file stream for the PdfStamper;&lt;/P&gt;
&lt;P&gt;4) you create the PdfStamper.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to understand that you not overwrite the original PDF file.&amp;nbsp; The PdfStamper will copy page by page the original PDF file in a new file and you will overwrite, page by page, this new PDF file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After you finish, don't forget to close your PdfReader and PdfStamper and the corresponding references.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I never used AcroFields but the constructor for "AcroFields+item" is available, start with this one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see the need for the PdfWriter, but maybe you will need this with AcroFields.&amp;nbsp; In this case, take a look at "New PDF.vi".&lt;/P&gt;</description>
      <pubDate>Sat, 02 Nov 2013 21:42:04 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609823#M783022</guid>
      <dc:creator>J-M</dc:creator>
      <dc:date>2013-11-02T21:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609835#M783023</link>
      <description>&lt;P&gt;This is a far more in depth answer than I was expecting. It is appreciated - thank you very much. It also looks like I had the older version of Exaprom.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Nov 2013 22:31:07 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609835#M783023</guid>
      <dc:creator>Aalenox</dc:creator>
      <dc:date>2013-11-02T22:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: .net Frameworks in LabVIEW</title>
      <link>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609933#M783041</link>
      <description>&lt;P&gt;I don't have the time to dig, but what you want should look like this (I don't test this vi):&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/e73709f69fbc94419cafd546185f6f0a60381255/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f31323435333969454541443944393144373532453042382f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="Acrofield.jpg" title="Acrofield.jpg" align="middle" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will have to relink Open PDF Stamper.vi and Close PDF Stamper.vi.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the original PDF file is password protected:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.ni.com/t5/LabVIEW/Exaprom-authorization/m-p/2453558#M753278" target="_blank"&gt;http://forums.ni.com/t5/LabVIEW/Exaprom-authorization/m-p/2453558#M753278&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Nov 2013 14:50:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/net-Frameworks-in-LabVIEW/m-p/2609933#M783041</guid>
      <dc:creator>J-M</dc:creator>
      <dc:date>2013-11-03T14:50:26Z</dc:date>
    </item>
  </channel>
</rss>

