CNiFieldPointNetworkModule Class reference not find in Measurement Studio 2009

Hi all,
I am having a application on Visual Studio 2003 and Measurement Studio 7.1 .
I want to migrate this application on Visual Studio 2005 and Measurement Studio 2009. 
My application is using CNiFieldPointNetworkModule class ,
I am unable to find the class in  Measurement Studio 2009 include Please provide the
refrence how to use these file in Measurement Studio 2009.
Thanks
Nityanand

Hello
Change your definition to the following
Dim Peaklocation As Variant
Dim Peakamplitute As Variant
Dim SD As Variant
The VB help for this function states that these parameters need to be defined as Variants and not as array of variants. The PeakDetector function will automatically allocate an array of doubles and populate the variant with it. You can then index the variant to obtain the data as you would an array.
I hope it helps
Bilal Durrani
NI
Bilal Durrani
NI

Similar Messages

  • Unable to Build VC++ application it showing error 1 LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib' but I am Using Measurement Studio 2009 ,NI DAQ 7.01 and Field Point 6.05.

    I am having a application in Visual Studio 2003 on Windows XP  , Now I am Migrating the application in Visual Studio 2005 on Windows-7 .
    In my Development PC , I was install Measurement Studio 2009 ,  NI DAQ 7.01 and Field Point 6.05.
    my application is Showing following error:
    Linking...
    LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib'
    Build log was saved at "file://c:\EdacsNt\Source\SaftyServices\NICfpDAQDl?l\Debug\BuildLog.htm"
    NICfpDAQDll - 1 error(s), 0 warning(s)
    When I copy from NiFieldPoint71D.lib library from Measurement Studio 7.1 and put in :\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib.
    my application is Showing following error:
    1>Linking...
    1>atlsd.lib(atltrace.obj) : error LNK2005: "unsigned int (__stdcall* ATL::g_pfnGetThreadACP)(void)" (?g_pfnGetThreadACP@ATL@@3P6GIXZA) already defined in NiFieldPoint71D.lib(StdAfx.obj)
    1>atlsd.lib(atlbase.obj) : error LNK2005: "class ATL::CAtlWinModule ATL::_AtlWinModule" (?_AtlWinModule@ATL@@3VCAtlWinModule@1@A) already defined in NiFieldPoint71D.lib(StdAfx.obj)
    1>   Creating library ..\..\lib\debug\NICfpDAQDll.lib and object ..\..\lib\debug\NICfpDAQDll.exp
    1>..\..\bin\debug\NICfpDAQDll.dll : fatal error LNK1169: one or more multiply defined symbols found
    I want to ignore NiFieldPoint71D.lib from using project setting(Linker->Input->ignore Specific Library ) but still it is showing same error.
    In the project Setting I am done following setting:
    "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"
    C:\Program Files\National Instruments\NI-DAQ\Lib"
    Linker->Input->ignore Specific Library: mfcs71d.lib;libc.lib;'NiFieldPoint71D.lib
    Please provide some solution.
    Thanks
    Nityanand

    You posted this in the LabVIEW forum.
    Are you programming in LabVIEW?
    There is a separate Measurement Studio for VC++ forum. http://forums.ni.com/t5/Measurement-Studio-for-VC/bd-p/231

  • Unable to Build VC++ application it showing error 1 LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib' but I am Using Measurement Studio 2009

    I am Migrating a application in Visual Studio 2005.
    In my development PC I install the Measurement Studio 2005.
    my application is Showing following error:
    1>Linking...
    1>LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib'
    1>Build log was saved at "file://c:\EdacsNt\Source\SaftyServices\NICfpDAQDll\Debug\BuildLog.htm"
    1>NICfpDAQDll - 1 error(s), 0 warning(s)
    In the project Setting I am done following setting
    "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"
    C:\Program Files\National Instruments\NI-DAQ\Lib"
    but in  "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"  directory Not having the 'NiFieldPoint71D.lib' because Measurement Studio 2009 not provide this dll.
    Please provide some solution.
    Thanks
    Nityanand

    You posted this in the LabVIEW forum.
    Are you programming in LabVIEW?
    There is a separate Measurement Studio for VC++ forum. http://forums.ni.com/t5/Measurement-Studio-for-VC/bd-p/231

  • Weblogic 10.3 ---- PrintService class is not finding printers

    Hi folks,
    Am facing an issue in Weblogic 10.3. I have deployed my application which prints the pdf files.
    When i am getting print services available in my machine using
    *PrintService[] printService =
    PrinterJob.lookupPrintServices(); *
    its returning printService.length as *0*.
    But the same application is working fine in other environments like Oracle Soa Suite 10.1.3.3 and Jdeveloper 10.1.3.3.
    Can anybody please suggest on this.
    Please find the Sample Code:
    import java.awt.print.PrinterJob;
    import javax.print.PrintService;
    import org.pdfbox.pdmodel.PDDocument;
    public class PrintPdf {
    public void print(String printerName, String pdfFile) {
    PDDocument document = null;
    try {
    document = PDDocument.load(pdfFile);
    PrinterJob printJob = PrinterJob.getPrinterJob();
    boolean printerFound = false;
    PrintService[] printService = PrinterJob.lookupPrintServices();
    System.out.println("printService length: " + printService.length); //* printService.length is returning 0 *
    for (int i = 0; i < printService.length; i++) {
    System.out.println(i + "==> printService Name: " +
    printService.getName());
    if (printService[i].getName().indexOf(printerName) != -1) {
    printJob.setPrintService(printService[i]);
    printerFound = true;
    System.out.println("Got Printer");
    if (!printerFound) {
    System.out.println("Printer Not found");
    } else {
    printJob.setPageable(document);
    printJob.print();
    System.out.println("Print Successfull");
    } catch (Exception e) {
    e.printStackTrace();

    Thanks for your help.
    When i created a work manager from Deployments -> Configuration -> Workload -> New and the new Work Manager appears in the Application-Scoped Work Managers table. But was not able to see that in Monitering -> Workload Work managers table. Why is that so?
    Regards,
    Smita

  • Measurement Studio NumericEdi​t Control is Not Working

    I installed Measurement Studio 2013 with Visual Studio 2012 Professional yesterday and imported my previously developed projects on (VS 2010 Express). Web controls and C# coding working fine.
    I started Measurement studio chapter 2 first exercise to add control WaveformGraph, Gauge and Legend on my page and working but when add NemericEdit control then it gives me JavaScript critical error …….. SCRIPT1014 Invalid character. I am using window 7 and IE11 cleared cache already.
    Please help.
    Best regards
    Bashir.
    Attachments:
    NumericEdit_ScreenShots.docx ‏298 KB

    Hi Bashir,
    I was able to reproduce this issue in IE11. Please note, Measurement Studio 2013 supports IE6 - IE10, so we have not tested the Measurement Studio 2013 ASP.NET controls with IE11. However, what you are seeing appears to be a result of IE11 dropping support for conditional compilation for javascript (https://msdn.microsoft.com/en-us/library/ie/121hztk3(v=vs.94).aspx). Because of this, when the Visual Studio debugger is attached to your ASP.NET website, you see an unexpected character exception.
    Please note that the documentation for Web Browser Compatibility with Measurement Studio Web Forms Controls says that IE9 and 10 are only fully supported in compatibility mode. I took the liberty of testing IE11 in compatibility mode, and the Visual Studio debugger message stopped appearing. 
    Let me know if you have any questions.
    Daniel D.
    National Instruments
    Automated Test Software R&D

  • Exe file will not start using a Measurement studio 2013 component

    Hello,
    I use Meausrement studio 2013 with visual studio 2012 and vbnet on windows 7.
    On a new project (windows form application), i use a form and a ScatterGraph component. I compile, no errors and it works fine. 
    Now, i try to start this application on a another Windows 7 station. (The framework 4.5 is installed on its station).
    The exe file is in a directory with the natrional Instruments dll files.
    The exe file will not start, no errors.
    PS: Before, with Meausrement studio 2010 and visual studio 2010 all worked fine. 

    Hi, virgule
    It sounds like you are using the "Publish" feature in Visual Studio (a.k.a., ClickOnce) for deployment, is that correct? If so, unfortunately ClickOnce is not supported by Measurement Studio components.
    If you are looking for a good way to deploy Measurement Studio applications, I would highly recommend upgrading to Measurement Studio 2015, which ships with Measurement Studio Installer Builder. You can read more about this here: http://www.ni.com/white-paper/52669/en/
    If you cannot update to Measurement Studio 2015 and are using Visual Studio 2013, NI recommends using WiX for creating your installer. More information on WiX deployment can be found here: http://digital.ni.com/public.nsf/allkb/764B727C9BD2C4C686257C970053D059
    Thanks,

  • Using graphs in measurement studio

    I have written in multiple languages, and this �easy� �user friendly� software package has left me completely stumped. How on earth do you put data in to a graph and display it????? Can someone please show me code examples of firstly how to shove an entire array of numbers into a graph in VB.net using the new Measurement Studio and secondly how I could update a graph plot with a next acquired sample. Please help

    "Where would I find "Creating Measurement Studio Strip Charts, Scope Charts, and Graphs" document. if it is on the website it is extremeley well hidden even from its own search engine. Does this specifically talk about VB .NET and measurement studio"
    You can find this topic, as well as several other conceptual topics about the Measurement Studio .NET features with VB.NET/C#, in the Measurement Studio help that installs with Measurement Studio. You can find this help in two ways:
    Integrated into VS.ET 2003/MSDN Help - Go to the table of contents, then the "NI Measurement Studio Help" node.
    Measurement Studio standalone help - Go to the Start Menu, then Programs->National Instruments->Measurement Studio 7.1 for VS.NET 2003->Measurement Studio Documentation
    Once you're in the table of contents, you can find the topic above by navigating to:
    - NI Measurement Studio Help
    - NI Measurement Studio .NET Class Library
    - Using the Measurement Studio .NET Class Libraries
    - Using the Measurement Studio Windows Forms .NET Controls
    - Using the Measurement Studio Graph .NET Controls
    The topic above is the second link in the list. If you have Measurement Studio 7.1 installed, this link will take you directly there.
    "Using Measurement Studio ActiveX controls I wouldn't even know where to start, there is no AxCWGraph on any toolbar."
    AxCWGraph is the name of the interop wrapper that is automatically generated by VS.NET when you add CWGraph to your project, so you won't see it in the toolbox. WaveformGraph/ScatterGraph is what you should use in .NET applications if you have Measurement Studio 7.0 or higher. I only mentioned CWGraph because this was posted to the Measurement Studio for Visual Basic forum instead of the Measurement Studio for Visual Studio .NET forum, so it wasn't clear if you were using the Measurement Studio .NET controls or the Measurement Studio ActiveX controls.
    "If NI could just stick an example of exactly how to use VB.NET with measurement studio on displaying data and the various options available and stick it for all to see on the measurement studio home page it would be great."
    There are several examples that are installed with Measurement Studio 7.1. If you installed Measurement Studio to the default location, you can find this examples at:
    Program Files
    National Instruments
    MeasurementStudioVS2003
    DotNET
    Examples
    UI
    Graph
    "I write in over ten different languages and scripts and fluent in two of them. It worries me that I can't even find the front door let alone open it."
    I can understand how this could difficult if you were not aware of the Measurement Studio help and examples. Is it easier now that you know about this content that installed with Measurement Studio? If not, what else do you feel is missing?
    - Elton

  • Coding error using measurement studio

    hello..
    can somebody tell me where can i get help on coding the measurement studio using VB.i'm doing an interface programing with a dc servo motor.i'm using a fuzzy logic controller(FLC) to make the output of the servomotor to follow the input, which i'm using a square wave input.i'm having coding problems on linking the FLC with the harware.i'm not quite good in visual basic, so can anybody help me with the coding?i can send the vb coding of the FLC and the hardware interface coding. i've successfully implement PID controller.. but i can't seem to make the FLC work. i think there's something wrong with the coding.
    and how can i make the graph go more faster? output from the graph is very slow, compared if i probe the output from the servomotor harware using a digital oscilloscope.

    Hi,
    I recommend the Measurement Studio Reference as a resource. This reference is installed with Measurement Studio and can be found on your computer from Start>>Programs>>National Instruments>>Measurement Studio>>Help. The Measurement Studio Reference includes information on the Measurement Studio ActiveX controls and tutorials.
    Next, is the FLC you are using part of a Measurement Studio Add On? Are you using the PID Toolset for VB?
    Then, if the graph you are using is a CWGraph, you can access the properties of the graph by right-clicking and selecting Properties…. Click on the Graph Tab of the Property Pages window and check that Control Refresh is set to Immediate. This has the graph redrawn as soon as new data is available.
    Regards,
    Eric M

  • Ifs902 doe not find tiff files in search

    Hi gurus,
    i'm have this issue too you:
    I'm creating an application that search for
    files in 9ifs. Some of this files are TIFF type.
    search class is not able to find any kind of files
    of that type.
    There was a problem with the Annotator agent that
    throw a exception when annotating TIFF files, but
    I've changed the Annotator.jar, using now Annotator.jar
    from cmsdk903.
    The Exceptions were not throw anymore but search classes
    can not find the document yet.
    Does anyone knows anything that can help?
    Thanks in advance!
    Felippe.

    Hello Gokce,
    After cmd-f in the Finder you have to click *on the button labeled "Kind"*, don't confuse that with the button right next to Kind is... . Now a pop up menu will open from which you have to choose "Other...". Another menu appears from which you can choose "System Files".
    floba

  • Does Measurement Studio offer much for someone writing a basic control system?

    I'm trying to weigh whether the added cost (and bulk) of Measurement Studio would be worth it for me vs simply using the free DAQmx libraries.
    My application wouldn't have any need for the custom controls offered by MS nor the advanced libraries. All the application is doing is monitoring a handful of digital and analog inputs, reacting to them, and setting a handful of digital inputs. No high speed measurements, waveforms, etc. Probably the highest priority I/O may get updated every 50-100 ms.
    I'm mainly wondering if MS offers anything over the DAQmx libraries when it comes to working with I/O asynchronously (which seems like the proper way to approach a responsive machine control application).

    This an interesting question and I don't have a great answer.  I hope someone comes along and explains the issue clearly.  
    I like having all of Measurement Studio because I depend on Visa for the instrument libraries (scopes, meters, power supplies etc.).  I don't want to write an entire communication library from scratch.
    For just basic IO though I'm not sure what Measurement Studio actually brings to the table.  Since I've always had the entire package (Measurement Studio Enterprise Edition I believe) I don't know which features are available outside of Measurement Studio.  
    Did you mention that you are working with NI hardware?  If not, then maybe Measurement Studio buys you even less.  When working with NI hardware NI MAX (Measurement and Automation eXplorer) makes it so simple.  Just plug in a USB device and give it an alias in MAX like TS_Light and you can talk to it with :
    using (var t = new Task())
             Thread.Sleep(10);
            // Create full device name based on fixture platform passed into constructor
             const string strDevice = "TS_Light/port0";
            // Setup Task
            t.DOChannels.CreateChannel(
                     strDevice, 
                      ChannelLineGrouping.OneChannelForAllLines);
             // Create a write stream and send out the desired Value
            var writer = new DigitalSingleChannelWriter(t.Stream);
            // Convert port value to bool array
             var boolArray = new bool[8];
            for (int i = 0; i < 8; i++)
                      boolArray[i] = Convert.ToBoolean((portValue >> i) & 0x01);
            t.Start();
             writer.WriteSingleSampleMultiLine(false, boolArray);
    It looks a little complicated but it is the same flow for all NiDaqMx Tasks.  
    Again, I realize that I'm not answering your direct question of what does MS really bring to you when you are doing such a simple IO project.  I wonder however if you will ever be doing a similar project again soon?  And then maybe you will want to add some support for instrument automation and data collection? When you look at doing multiple projects, even simple ones, the cost of Measurement Studio starts to look like a better investment in my opinion.
    Good luck with your project!
    Grant M. Johnson
    Project Engineer
    LECO Corporation

  • I am using IMAQ vision for Measurement Studio, Ver6.0 with Measurement Studio Base Package,Ver6.0(Professional Edition).Can I work in IMAQ Vision for Measurement studio, Ver6.0 If I upgrade Measurement studio to Enterprise Edition,ver8.0.1

    I am using IMAQ vision for Measurement Studio, Ver6.0 with Measurement Studio Base Package,Ver6.0(Professional Edition).Can I work in IMAQ Vision for Measurement studio, Ver6.0 If I upgrade Measurement studio to Enterprise Edition,ver8.0.1
    Thanks
    Biswajit

    Howdy Biswajit,
    The IMAQ and Vision ActiveX controls you are using with Visual Basic 6 do not install with Measurement Studio. They are installed when you install the IMAQ software and include support for Visual Studio 6. Upgrading to Measurement Studio 8.0.1 will have no effect on your IMAQ controls since they are not related to one another. Purchasing Measurement Studio Professional or Enterprise packages allows you Visual Studio 6 support for other ActiveX components. Refer to this link for a list of ActiveX components included in those packages. 
    If you are asking about using the ActiveX controls in .NET, then take a look at this KnowledgeBase entitled Do NI-IMAQ and NI Vision Support Microsoft Visual Studio .NET?
    Hope this clarifies things!
    Best Regards,
    Jonathan N.
    National Instruments

  • Measurement studio expired first day I install

    Hi,
    I download Measurement Studio 2009 for Visual Studio Evaluation yesterday. I installed it with Labview 2009 and DAQmx 9.2.1. My OS is XP sp3. I have a DAQ card DAQ-6024E. And I tried to output a analog signal using the card. So, I found out there is an example from NI after installation named "GenVoltageUpdate" in the folder  \NI-DAQ\Examples\MStudioVC2008\Analog Out\Generate Voltage\. I used VS 2008 to try to run this program in debug mode. There was a box popped up "The Measurement studio evaluation has expired". I checked the Measurement Studio>> License, and it shown as the figure attached. None of them has expired yet.
    I don't know why there is such message about expiration. I hope someone can help me.
    Thank you very much.
    Attachments:
    新图片.jpg ‏246 KB

    Hi, I installed today (02-12-2011) the evaluation version of Measurement studio 2010 for Visual Studio 2008.
    Checking the licence page from the Measuremt studio menu I get thet all the components I installed should expire on 13/03/2011.
    The problem is that if I try to execute any sample code provided I get the following error:
    System.ComponentModel.LicenseException was unhandled
      Message="NationalInstruments.UI.WindowsForms.WaveformGraph evaluation period has expired."
      Source="NationalInstruments.Common"
      StackTrace:
           at NationalInstruments.Restricted.EvalReleaseLicense.ShowEvalBehavior(Type type, Object instance, String licenseString)
           at NationalInstruments.Restricted.EvalReleaseLicense.ComponentRunTimeCheck(Type type, Object instance, String licenseString)
           at NationalInstruments.Restricted.LicenseBase.PerformRunTimeCheck(Type type, Object instance, String runTimeLicense)
           at NationalInstruments.Restricted.LicenseBase.RunTimeCheck(LicenseContext context, Type type, Object instance)
           at NationalInstruments.Restricted.LicenseProviderBase.GetLicense(LicenseContext context, Type type, Object instance, Boolean allowExceptions)
           at System.ComponentModel.LicenseManager.ValidateInternalRecursive(LicenseContext context, Type type, Object instance, Boolean allowExceptions, License& license, String& licenseKey)
           at System.ComponentModel.LicenseManager.ValidateInternal(Type type, Object instance, Boolean allowExceptions, License& license)
           at System.ComponentModel.LicenseManager.Validate(Type type, Object instance)
           at NationalInstruments.UI.WindowsForms.WaveformGraph..ctor()
           at NationalInstruments.Examples.Plotting.MainForm.InitializeComponent() in C:\Documents and Settings\All Users\Documenti\National Instruments\MStudioVS2008\DotNET\Examples\UI\WindowsForms\Graph\Plotting\cs\MainForm.cs:line 64
           at NationalInstruments.Examples.Plotting.MainForm..ctor() in C:\Documents and Settings\All Users\Documenti\National Instruments\MStudioVS2008\DotNET\Examples\UI\WindowsForms\Graph\Plotting\cs\MainForm.cs:line 37
           at NationalInstruments.Examples.Plotting.MainForm.Main() in C:\Documents and Settings\All Users\Documenti\National Instruments\MStudioVS2008\DotNET\Examples\UI\WindowsForms\Graph\Plotting\cs\MainForm.cs:line 274
           at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
           at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
           at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
           at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
           at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
           at System.Threading.ThreadHelper.ThreadStart()
    I tried using the Measurement studio active-X License fixer. In the Licensed controls list there is "3D Graph control 8.0" but in the Elvaluation Licenses list and the Broken Licenses list the is no controls at all.
    Is there something else I can do?
    Best regards, 
    Mark

  • Unable to Build VC++ applicatio​n it showing error 1 LINK : fatal error LNK1104: cannot open file 'NiFieldPo​int71D.lib​' but I am Using Measuremen​t Studio 2009

    I am Migrating a application in Visual Studio 2005.
    In my development PC I was install the Measurement Studio 2009
    my application is Showing following error:
    1>Linking...
    1>LINK : fatal error LNK1104: cannot open file 'NiFieldPoint71D.lib'
    1>Build log was saved at "file://c:\EdacsNt\Source\SaftyServices\NICfpDAQDll\Debug\BuildLog.htm"
    1>NICfpDAQDll - 1 error(s), 0 warning(s)
    In the project Setting I am done following setting
    "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"
    C:\Program Files\National Instruments\NI-DAQ\Lib"
    but in  "C:\Program Files\National Instruments\MeasurementStudioVS2005\VCNET\Lib";"  directory Not having the 'NiFieldPoint71D.lib' because Measurement Studio 2009 not provide this dll.
    Please provide some solution.
    Thanks
    Nityanand

    You posted this in the LabVIEW forum.
    Are you programming in LabVIEW?
    There is a separate Measurement Studio for VC++ forum. http://forums.ni.com/t5/Measurement-Studio-for-VC/bd-p/231

  • Error while crawling LOB contents in SP 2013:'Could not find default endpoint element that references contract in the ServiceModel client configuration section

    Hi,
    I created custom BDC Model using Visual Studio. In ReadList method i am getting data using Web Service call. Using this External Content Type (BDC Model) i created one external list and it is populating with data.
    I created one new content source in search service application using this BDC Model and when crawled this content source i am getting the below error.
    Error while crawling LOB contents. ( Error caused by exception: Microsoft.BusinessData.Runtime.RuntimeException MethodInstance with Name 'ReadList' on Entity (External Content Type) with Name 'Entity1' in Namespace 'bcsex.BdcModel1' failed
    unexpectedly. The failure occurred in method 'ReadList' defined in class 'bcsex.BdcModel1.EntityService1' with the message 'Could not find default endpoint element that references contract 'ServiceReference1.Service1Soap' in the ServiceModel client configuration
    section.
    I included the bindings and client end point configuration settings in web.config file located at
    \\Inetpub\wwwroot\wss\VirtualDirectories\Port_Number, but still getting the same error.
    Please help. Thanks a lot.

    The Issue resolved by including the bindings and client end point configuration settings in
    machine.config file located at C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\ and also restarted the server after config changes.

  • How to use a Measurement Studio class in MFC

    I am new to MFC coming over from VB.NET.
    I have created a VISA class to measure something from an instrument and have a simple dialog box with a Button to invoke the measurement and display it to a text box. I changed the ID of the control and made a member variable for the text box and can code the OnButtonClick event to display text in the Text box as a test.
    The problem is I cannot seem to create an object of the Visa Class that I built in the OnBnClickedRun()function. I can code the OnInitDialog() to make this measurement:
    double power;
    CGetBandPower BPower;
    BPower.Run(power);
    but want to do it when I click on the button. I am using VS.NET 2003 with Measurement Studio 7.0.
    Help

    Hello,
    I think the following other discussion forum post contains useful information for you:
    http://forums.ni.com/ni/board/message?board.id=232&message.id=1306&requireLogin=False
    In particular, read the posts by the names in blue... you'll find paths to great examples which should help you use VISA in the .NET environment.
    Repost if you continue to have any problems!
    Thank you,
    Best Regards,
    JLS
    Best,
    JLS
    Sixclear

Maybe you are looking for