I have 6 forms in my VB application, and i need the same menus in all 6 forms , is there a way to have the same menus repeat in all the forms of my project ?
Thanks.
Printable View
I have 6 forms in my VB application, and i need the same menus in all 6 forms , is there a way to have the same menus repeat in all the forms of my project ?
Thanks.
No...you would need to create the menu for each form.
Better you go for and MDI form in your project, the MDI form is common to all your forms.
Otherwise you should create the menu for each form.
You could also create one Menu form that all forms use.
The coding for that, however, gets tricky.
I think it would be easier to just code each form with a menu.