Measurement Studio for VB6

cancel
Showing results for 
Search instead for 
Did you mean: 

I need to Known the states of CWDataSocket2_OnStatusUpdated,

I developer MMI with Visual Basic, and need information about the event CWDataSocket2_OnStatusUpdated
0 Kudos
Message 1 of 2
(5,458 Views)
The type of the status is the CWDSStatus enumeration. You can find a list of the states by doing a search for CWDSStatus in the index of the Measurement Studio reference. Here is list with descriptions in case you don't have the Measurement Studio reference installed:


  • cwdsConnecting - DataSocket is in the process of connecting to the data source or target.


  • cwdsConnectionActive - DataSocket is in the process of transferring the data or waiting for an update.


  • cwdsConnectionError - DataSocket encountered an error connecting to the data source or target.


  • cwdsConnectionIdle - DataSocket has connected to the data source and transferred the data.


  • cwdsUnconnected - DataSocke
    t is not connected to any data source or data target.



- Elton
0 Kudos
Message 2 of 2
(5,458 Views)