|
|
DataqSdk Control > Events > NewData |
Applies to: |
DATAQSDK Active X Control |
Description: |
Fires when the number of new data points are equal to or higher than what is specified in the EventPoint property. This event returns acquired data into Count. Count is the number of data points not the actual value of the data points. |
Example: |
Private Sub DataqSdk1_NewData(ByVal Count As Integer) DQChart1. Chart DataqSdk1. GetData End Sub
Private Sub Start_Click() DataqSdk1. EventPoint = 20 DataqSdk1. Start End Sub
Private Sub Stop_Click() DataqSdk1. Stop End Sub |