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
1475
Bring a Ribbon into View
posted

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.

I tried using BringIntoView() function. Here is the Syntax:

Me.tbmMainRibbon.Ribbon.Tabs("Document").BringIntoView()

but it didn't help.

Can anyone help me with this issue.

 Thank you in advance.

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

     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");

Children