Home
Up
BarRecords
Name
Status
SuperstructureMass
SuperstructureMassEpoxy
SubstructureMass
SubstructureMassEpoxy
OnBarRecordAdded
OnBarRecordChanged
OnBarRecrodRemoved
OnBarRecordsSorted
OnBarRecordMoved
OnGroupChanged

Group.Status

Get the status of the group

Syntax

status = group.Status

Parameters

None

Returns

StatusType.  The current value of the group status

Remarks

The status of the group is based on the status of the bar records within the group.  The group will only have a status of stOK if every group has a status of stOK.

Example

This example displays the status of a group

Dim status as StatusType
status = group.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

 

Copyright © 1999, Washington State Department of Transportation