Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Elegant Ribbon Tech Support » Select Tab with Code Collapse All
Subject Author Date
Gunter Avenius Nov 16, 2007 - 4:50 AM

Hello,

Elegant.Ribbon2.2, vb2005

I have 4 tabs

how can i select the tab 3 to see the tab in the Ribbon with code?.

Ribbon1.TabPages(2).Select() and
Ribbon1.TabPages(2).Focus()

dont work

Best regards
Gunter Avenius

Technical Support Nov 16, 2007 - 9:30 AM

You can do this with the code like

Ribbon1.CurrentTabPage = Ribbon1.TabPages(2)

Gunter Avenius Nov 16, 2007 - 9:57 AM

Hello,

Thanks.

Best regards
Gunter Avenius