Going to Sound Stupid but ......

  • Thread starter Thread starter Newbie!
  • Start date Start date
N

Newbie!

In know i might sound stupid but i`ve looked all over and carn`t find out.

I have a Tool Bar on my project vut how do i assign a button to a command,
say i want ToolBar1, Button1 to Open a Form, Button2, to open another form,
Button3 to run the Close.Me command etc etc

Many thanks for any help in advance
Regards
Si
 
* "Newbie! said:
In know i might sound stupid but i`ve looked all over and carn`t find out.

I have a Tool Bar on my project vut how do i assign a button to a command,
say i want ToolBar1, Button1 to Open a Form, Button2, to open another form,
Button3 to run the Close.Me command etc etc

\\\
Private Sub ToolBar1_ButtonClick( _
ByVal sender As System.Object, _
ByVal e As System.Windows.Forms.ToolBarButtonClickEventArgs _
) Handles ToolBar1.ButtonClick
Select Case True
Case e.Button Is Me.ToolBarButton1
 
Back
Top