steps-
1-Adding1-Adding Menu Bar Using Menu Editor
2.To start adding menu items to your application, open an existing project or start a new project, then click on Tools in the menu bar of the Visual Basic IDE and select Menu Editor.
3.select shorcut option whatever you want..supose..new as ctrl-new
4.then click->thse arrow symbol to select an blue type then it print there sub menu and there shortcut
5.When you click Ok, the menu items will be shown on the menu bar of the form.
6.final
or-
note-
but is depend on properties option....
Option Explicit
Private Sub Form_Load()
Dim i As Integer
For i = 1 To 8
Load mnu(i)
mnu(i).Caption = InputBox("Enter name of control")
Next
End Sub