Problem with MenuStrip for ShortCut.

capedech

Well-known member
Joined
Oct 29, 2008
Messages
62
Programming Experience
Beginner
I have 2 Form : MDIForm and Form1.
Form1 is MDIForm's child.
I put 1 MenuStrip at MDIForm for File, Cashier, Report, About, etc.
Let's call this MenuStrip "MnMDIForm"
And I put another MenuStrip at Form1 for ShortCut (F1, F2, etch).
Let's call this MenuStrip "ShortCutMn"
I put ShortCutMn.Visible = False.

But, why everytime I ran the program, this ShortCutMn always appear a MnMDIForm ?

And also, the ShortCutMn can't perform.
I pressed [F1], but it didn't do anything.
 
But, why everytime I ran the program, this ShortCutMn always appear a MnMDIForm ?
Menus in Mdi merge by default. You can set AllowMerge to False in child menu to prevent it.
And also, the ShortCutMn can't perform.
I pressed [F1], but it didn't do anything.
It does when I do. Have you added code for item click? Could there be a conflict with other shortcut?
 
Back
Top