Home Up Groups TrafficBarrierQuantity BridgeGrateInletQuantity RetainingWallQuantity SuperstructureMass SuperstructureMassEpoxy SubstructureMass SubstructureMassEpoxy Status Project JobNumber Engineer Company Comments OnBarRecordAdded OnBarRecordChanged OnBarRecordRemoved OnBarRecordsSorted OnBarRecordMoved OnGroupAdded OnGroupChanged OnGroupRemoved OnGroupMoved OnNotIncludedQuantitiesChanged
| |
Barlist.OnBarRecordRemoved
Fires when a bar record is removed from this barlist
Syntax
handler_OnBarRecordRemoved(group,mark)
Parameters
group
Group from which the bar record was removed
mark
Mark number of the bar record that was removed
Returns
None
Example
In this example, a message is displayed when a bar record is
removed from the barlist
Dim With Events barlist as Barlist
Set barlist = new Barlist
...
Private Sub barlist_OnBarRecordRemoved(ByVal group as Group, ByVal mark as String)
MsgBox "Mark " + mark + " was removed from Group "
+ group.Name
End Sub
|