Link to home
Start Free TrialLog in
Avatar of zero_point_o
zero_point_oFlag for United States of America

asked on

How can I make the child Form's ToolStrip merge with it's parents? (.NET C++/CLI)

In my MDI application how can I make the child Form's ToolStrip merge with it's parents?

- zero_point_o
ASKER CERTIFIED SOLUTION
Avatar of Jayadev Nair
Jayadev Nair
Flag of United States of America image

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 zero_point_o

ASKER

Well, that's actually the documentation for a MenuStrip... And, I've read it before. But, you did lead me down the right path as I noticed something that I hadn't noticed previously...

"To combine the items of other controls, such as ToolStrip and StatusStrip controls, you must merge them manually, by calling the Merge and RevertMerge methods in your code as required."

Thanks compued