Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1015
Ribbon not appearing in MDI child form
posted
I'm new to this, so I would appreciate some help. I have a main form with a main Toolbar manager with some menu items on it. One of the menu items opens an MDI form, which has a different Toolbar on it. So I would like the main form to have it's menu, and the MDI child to have it's own menu (not merge the two). However, when I open the child form via Dim frmOrderList As frmOrderList frmOrderList = New frmOrderList frmOrderList.MdiParent = Me frmOrderList.Show() the child form doesn't show it's set of menus. However, if I define the child form as not being an MDI child form (just a regular form), and open it without the .MdiParent statement above, it opens fine with it's own menu. I've set the MdiMergeable property to False on both toolbar managers. What am I doing wrong? Thanks for any assistance.
Parents
  • 44743
    posted

    By default, the mdi child's toolbars manager will be hidden, because it merges its contents into the parent's manager instead of displaying itself. However, setting MdiMergeable to False on one or both toolbars managers should prevent this. If it is not, it may be a bug. I would recommend submitting the issue to the support group: http://ko.infragistics.com/gethelp.

Reply Children
No Data