DataqSerial Control > Events > NewData

Previous | Next

NewData

Applies to:

DATAQSERIAL 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()

DataqSerial1. EventLevel=20

DataqSerial1. Start

End Sub

 

Private Sub Stop_Click()

DataqSerial1. Stop

End Sub

 

Private Sub DataqSerial1_NewData(ByVal Count As Integer)

DQChart1. Chart (DataqSerial1. GetData)

End Sub

 

Reference Materials | Top