DiverDan
Contributor
Is it possible to combine the toolbar menu with the main menu so that both can share the same commands?
Private Sub RunMyCode()
End Sub
Private Sub MenuItem4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem4.Click
RunMyCode()
End Sub
Private Sub ToolBar1_ButtonClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ToolBarButtonClickEventArgs) Handles ToolBar1.ButtonClick
RunMyCode()
End Sub