|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Simon,
We have a component called the MaintenanceFormToolstrip that is the component you saw when you watched the video. It communicates directly with the form, and the form has collections of business objects that belong to "actions." There is a navigate action, a save action, an add action, etc, and you decide which business objects participate in the actions. However, there is only one collection for each action, so if you have multiple lists, you would be able to use the maintenance form toolstrip for one of the lists, but the other lists, you would have to add your own toolbars.
It would be slightly more work than using the maintenance form toolstrip, but not a whole lot, because after building your toolbars, you would just have one line of code within each Click event of the buttons. For instance, the add button for the toolstrip on list 3 would look like this:
Public Sub AddList3_Click(ByVal sender As Object, ByVal e As EventArgs)
'-- Call Add() on the business object
List3BO.Add()
End Sub
|