Private C7000Device As New C7000.SDK ' generate instance of SDK
Private Sub Sample()
Dim SDKResult As Long
' >>>>> start measurement <<<<<
SDKResult = C7000Device.SK_StartMeasuring ()
If C7000.SDK.SKF_STATUS_COM.SUCCESS <> SDKResult Then ' start measurement
error ?!
' add error processing...
End If
' >>>>> stop stanby <<<<<
SDKResult = C7000Device.SK_StopStandby()
If C7000.SDK.SKF_STATUS_COM.SUCCESS <> SDKResult Then ' stop standby
error ?!
' add error processing...
End If
End Sub