Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

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.

EESignature


Blog: hjalte.nl - github.com