|
|
WinDaq Control > Events > NewData |
NewData
Applies to: |
WINDAQ Active X Control |
Description: |
Fires when the number of new data points are equal to or higher than what is specified in the EventLevel property. |
Example: |
Private Sub Start_Click() WinDaq1. EventLevel = 10 WinDaq1. Start End Sub
Private Sub Stop_Click() WinDaq1. Stop End Sub
Private Sub WinDaq1_NewData(ByVal Count As Integer) DQChart1. Chart (WinDaq1. GetDataStream(FormatBinary)) End Sub |