Standard Menu Strip

  • Thread starter Thread starter miquals
  • Start date Start date
M

miquals

I'm new to VB but not programming. Using VB Express you can create a
"standard menu strip", but I can't find an example of using it
anywhere. Do you know of any examples?

To create a "standard menu strip", with the normal items such as FILE,
EDIT, SAVE, etc, first add a MenuStrip to a form. Then riqht click and
select "Insert Standard Items".
 
miquals said:
I'm new to VB but not programming. Using VB Express you can create a
"standard menu strip", but I can't find an example of using it
anywhere. Do you know of any examples?

To create a "standard menu strip", with the normal items such as FILE,
EDIT, SAVE, etc, first add a MenuStrip to a form. Then riqht click and
select "Insert Standard Items".

Each menu item you add will appear in the list of controls. To process
the user clicking on one, just put some code in the Click event for the
control.
 
Back
Top