08-14-2012, 07:22 PM
You can manually change the menu items of a MenuStrip by going into the menu strip's properties and clicking (...) on the "Items" property. Then, each menu item has it's own property called "DropDownItems", which contains all its sub menus, etc.
You can then edit what happens when each of these items is clicked by making a new Sub called
[code2=vbnet]Public Sub MenuClick(sender As System.Object, e As System.EventArgs) Handles MenuItemNameHere.Click
End Sub[/code2]
Hope this helps!
You can then edit what happens when each of these items is clicked by making a new Sub called
[code2=vbnet]Public Sub MenuClick(sender As System.Object, e As System.EventArgs) Handles MenuItemNameHere.Click
End Sub[/code2]
Hope this helps!