Signal Conditioning

cancel
Showing results for 
Search instead for 
Did you mean: 

How to display acquired data as numbers

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!
0 Kudos
Message 1 of 2
(2,959 Views)
sorry! posted this in the wrong forum
0 Kudos
Message 2 of 2
(2,952 Views)