Link to home
Start Free TrialLog in
Avatar of jannea
jannea

asked on

VB5 MDI-Child How to...

How to Keep my toolbar and menu in the MDI-Child without move it to the MDI-parent. Even if i set the NegotiateMenus to False i get the MDI-Child menus in the MDI-Parent.

/Janne
ASKER CERTIFIED SOLUTION
Avatar of rantanen
rantanen

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jannea
jannea

ASKER

Thanks and OK !

But... isn´t it any other way to solve my problem.

/Janne
Kinda, you can give up MDI. Have one main form which contains menu and toolbar only for your common tasks (like VB itself has) and then add your "child" forms using e.g.

Dim X As New myForm
X.Show

Some things will be more tedious to do, but it can be done.
Avatar of jannea

ASKER

Thanks !

But it should have been much more easy if it should be possible, coz i got five exe charing the MDI-Parent and then lots of childs to work with so it get´s hard to remember all the menus i got in the main...

/Janne