03-02-2023
11:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-02-2023
11:25 AM
This iLogic rule will give you the name of the active ribbon tab (in the active ribbon)
For Each ribbon As Ribbon In ThisApplication.UserInterfaceManager.Ribbons
If (Not Ribbon.Active) Then Continue For
For Each ribbonTab As RibbonTab In Ribbon.RibbonTabs
If (RibbonTab.Active) Then
MsgBox(String.Format("Ribbon tab '{0}' in ribbon '{1}' is active",
RibbonTab.DisplayName, Ribbon.InternalName))
End If
Next
Next
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com