I have the following problem: I want to acquire data from three separate channels from my DAQ-1200 and display the data in realtime. I manage to graphically display it using the following program in VB:
Option Explicit
Private Sub Start_Click()
CWAI1.Configure
CWAI1.Start
End Sub
Private Sub Stop_Click()
CWAI1.Stop
End Sub
Private Sub CWAI1_AcquiredData(ScaledData As Variant, BinaryCodes As Variant)
CWGraph1.PlotY ScaledData
End Sub
The problem is I want to display the values as numbers, not as a graph. I figured i should use the CWNumEdit command, but where do i put it in the program and how do i define it, and how do i make it so that i can display each channel in a separate CWNumEdit box?
Thanks a million!