Dynamic Main menu

Mat

Member
Joined
Jun 15, 2004
Messages
12
Programming Experience
10+
Hi everyone

After the mdi environment, i'm now trying to do a dynamic main menu. I want to do exactly like microsoft word and his menu "windows". Every document in the MDI are listed and can be selected in this menu. I have search a lot but didn't found how to do that. Thx to help

Mat
 
Mat said:
Hi everyone

After the mdi environment, i'm now trying to do a dynamic main menu. I want to do exactly like microsoft word and his menu "windows". Every document in the MDI are listed and can be selected in this menu. I have search a lot but didn't found how to do that. Thx to help

Mat
in your windows form design mode in the toolbox put the mainmenu and in the mainmenu type what ever you want..
if you want to call another windows forms in the menuitem click put this
VB.NET:
 dim x as new Form2()
 x.showdialog

hope it can helps...
happy coding :cool:
 
Back
Top