Home Up Count Item Add Move MoveUp MoveDown Remove OnBarRecordAdded OnBarRecordChanged OnBarRecordRemoved OnBarRecordsSorted OnBarRecordMoved OnGroupAdded OnGroupChanged OnGroupRemoved OnGroupMoved
| |
GroupCollection.OnBarRecordChanged
Fires when a bar record in this group collection has changed
Syntax
handler_OnBarRecordChanged(group,record)
Parameters
group
Group that the barlist record is a member of
newrecord
The bar record that changed
Returns
None
Example
In this example, a message is displayed when a bar record is
changed
Dim
With Events groups as GroupColection
Set
groups = barlist.Groups
...
Private Sub groups_OnBarRecordChanged(ByVal group as Group, ByVal record as
BarRecord)
MsgBox "Mark " + record.Mark + " in Group " +
group.Name + " has changed"
End Sub
|