Barlist.Status
Get the status of the barlist
Syntax
status =
barlist.Status
Parameters
None
Returns
StatusType. The current value of the barlist status
Remarks
The status of the barlist is based on the status of the bar
groups and the bar records within the groups. The barlist will only have a status of
stOK if every bar record and every group has a status of stOK.
Example
This example displays the status of the barlist
Dim status as
StatusType
status = barlist.Status
Dim msg as String
Select Case status
Case stOK
msg = "Status is OK"
Case stWarning
msg = "Status is Warning"
Case stError
msg = "Status is Error"
End Select
MsgBox msg
|