﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » WinForms (How do I?)  » How does the navigational toolbar with multiple lists?</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 09 Jun 2026 04:00:56 GMT</lastBuildDate><ttl>20</ttl><item><title>How does the navigational toolbar with multiple lists?</title><link>http://forum.strataframe.net/FindPost1022.aspx</link><description>Hi&lt;br&gt;
&lt;br&gt;
I have not yet had a chance to use Strataframe because of install problems with VBExpress but I watched the development video and saw the navigation buttons on the tool bar.  I often create forms with several navigational lists and in my case I have a navbar attached to each list so you can easily add and delete records to the associated list.  Since I saw the navigation buttons etc. in the toolbar I wondered how this model works with multiple lists on the same form with I assume only one toolbar.&lt;br&gt;
&lt;br&gt;
Can someone explain how this works or does not work?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
Simon</description><pubDate>Mon, 01 May 2006 13:12:32 GMT</pubDate><dc:creator>Simon White</dc:creator></item><item><title>RE: How does the navigational toolbar with multiple lists?</title><link>http://forum.strataframe.net/FindPost1025.aspx</link><description>Simon,&lt;br&gt;
&lt;br&gt;
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.  &lt;br&gt;
&lt;br&gt;
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:&lt;br&gt;
&lt;br&gt;
Public Sub AddList3_Click(ByVal sender As Object, ByVal e As EventArgs)&lt;br&gt;
'-- Call Add() on the business object&lt;br&gt;
List3BO.Add()&lt;br&gt;
End Sub</description><pubDate>Mon, 01 May 2006 13:12:32 GMT</pubDate><dc:creator>StrataFrame Team</dc:creator></item></channel></rss>