On Feb 22, 2007, at 4:25 PM, Brian Heibert wrote:
> In the toolbar I am using which is the default standard toolbar that
> REALbasic has starting with 2007 what do I put to get the toolbar
> buttons to do something?
>
> I am talking about the toolbar's action event
>
> Sub Action (item as ToolItem)
You could do something like this:
Select Case item
Case Me.ToolItem1
MsgBox "First item was pressed"
Case Me.ToolItem2
MsgBox "Second item was pressed"
Case Me.ToolItem3
MsgBox "Third item was pressed"
End Select
~William
--
REAL World 2007 Conference
May 9 - 11 in Austin, Texas
<http://www.realsoftware.com/realworld>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>