PDA

Click to See Complete Forum and Search --> : pull down menu in vb.net


johnsx2002
Nov 14th, 2002, 03:21 PM
How do make a pull down menu in vb.net? i know in vb6 you just right clicked an went into menu properties or somthing like that an there it is, but i dont know how to do it in .net

Edneeis
Nov 14th, 2002, 03:25 PM
Its you!

If you mean at the top of a form use the MainMenu control.

If you mean a richtclick type menu use the ContextMenu control.

DevGrp
Nov 14th, 2002, 09:29 PM
There is a mainMenu control on the toolbar. Add it to the form, then you'll have an in place menu editor.

MrGTI
Feb 19th, 2003, 02:16 PM
This forum is where i learned about the MagicMenu (http://www.dotnetmagic.com/). It's a free control that allowed me to do all kinds of additional fancy things with the menus.

However, it was far more complex to work with than the built in VB.NET menu control. I only recommend it if you need something beyond the basic menu, and you are up for all the extra coding.