Home Up BarRecords Name Status SuperstructureMass SuperstructureMassEpoxy SubstructureMass SubstructureMassEpoxy OnBarRecordAdded OnBarRecordChanged OnBarRecrodRemoved OnBarRecordsSorted OnBarRecordMoved OnGroupChanged
| |
Group.OnBarRecordChanged
Fires when a bar record in this group has changed
Syntax
handler_OnBarRecordChanged(record)
Parameters
record
The bar record that changed
Returns
None
Example
In this example, a message is displayed when a bar record is
changed
Dim With Events group as Group
Set group = barlist.Groups(1)
...
Private Sub group_OnBarRecordChanged(ByVal record as BarRecord)
MsgBox "Mark " + record.Mark + " has changed"
End Sub
|