StatusUpdated Property (Read Only)
Syntax
CWBinding.StatusUpdated
Data Type
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