Multifunction DAQ

cancel
Showing results for 
Search instead for 
Did you mean: 

CWDAQ in VB 2010

Hello,

 

Since you are not running your TDAQ based application concurrently with your new application, I would still recommend using DAQmx.

 

http://zone.ni.com/devzone/cda/tut/p/id/4344

 

If you must use TDAQ, you will need to develop a TDAQ application in VB or Labview (from examples) and compile them as DLLs. Once you have your DLLs, you can call them from your .Net application.

 

Eric

Eric Liauw
Senior AE Specialist - Automated Test | CLD | CTA
National Instruments
0 Kudos
Message 11 of 12
(668 Views)

Hi,

 

I use this code it works.

 

Dim ReadingVoltage
With AxCWAIPoint
   .Device = 1

   .SingleRead(ReadingVoltage)
End With
UserInterfaceTextBox.Text = UserInterfaceTextBox.Text & CStr(ReadingVoltage) & vbNewLine

 

Thank you,

Good NI

0 Kudos
Message 12 of 12
(655 Views)