StatusUpdated Property (Read Only)

Measurement Studio User Interface

StatusUpdated Property (Read Only)

Syntax

CWBinding.StatusUpdated

Data Type

Boolean

Purpose

Indicates if the binding status has changed or if an error has occurred.

Remarks

The property is set to True when the CWBindingStatusUpdated event is generated and reverts to False when it is queried.

Example

'Display the current status in the form
'[status:error] Message

'Create a reference to a CWBinding object
'on CWGraph1
Dim Binding As CWBinding
Set Binding = CWGraph1.CWBindings.Item(1)

Dim str As String
If (Binding.StatusUpdated) Then 
   str = "[" & CWBinding.Status & ":" & _
           CWBinding.LastError & "]"  & _
           CWBinding.LastMessage
   MsgBox str 
End If

See Also

Status

CWBindingStatusUpdated