Hi -
I have an UltraToolBarManager on my form which is having four ribbons.
All I wanted to do is Whenever a form which is part of the MDI is opened, one of the ribbon should get focus.
Me.tbmMainRibbon.Ribbon.Tabs("Document").BringIntoView()
but it didn't help.
Can anyone help me with this issue.
Thank you in advance.
I think BringIntoView has to do with scrolling, so that's probably not what you want. I think whatyou need to do is set the SelectedTab. Something like this:
Me.ultraToolbarsManager1.Ribbon.SelectedTab = Me.ultraToolbarsManager1.Ribbon.Tabs("Document");
It's working. Thanks Mike.