Oğuz KAHRAMAN
Oğuz KAHRAMAN

Reputation: 83

Exchanging image between LabVIEW and c#

I am trying to pass a string my function in Windows Form Application in order to invoke InteropAssembly.dll from a LabVIEW script. The script takes a string for opening image and do some process and then return 2 different images. But I am getting the error The type 'LVBaseRefnum' is defined in an assembly that is not referenced. You must add a reference to assembly 'NationalInstruments.LabVIEW.RefnumTypes'. I have checked the forum and so and found this . But it was posted quite long time ago and still no valid answer. Have you ever encounter this error any solution? Thanks in advance and my code as follows:

 using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Data;
 using System.Drawing;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.Windows.Forms;
 using InteropAssembly;

 namespace testLabview
 {
  public partial class Form1 : Form
  {
    private object img1;
    private object img2;

    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        this.pictureBox1 = null;
        this.pictureBox2 = null;
        string text = this.textBox1.ToString();

        LabVIEWExports.test(text, out Image img1, out Image img2);
        
        this.pictureBox1.Image = img1;
        this.pictureBox2.Image = img2;

    }
}

}

Upvotes: 1

Views: 221

Answers (1)

none
none

Reputation: 1

using NationalInstruments.LabVIEW.Interop;
using NationalInstruments.labVIEW.RefnumTypesNational;
NationalInstruments.labVIEW.Refnums.LVBaseRefnum img;

NationalInstruments.LabVIEW.Interop.dll NationalInstruments.labVIEW.RefnumTypes.dll

Upvotes: 0

Related Questions