Last active
July 30, 2019 12:45
-
-
Save rediffusion/58f431999082bb450d5da8444a6bfcc6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub OnActionGallery(control As IRibbonControl, _ | |
| selectedId As String, _ | |
| selectedIndex As Integer) | |
| Select Case control.ID | |
| Case Else | |
| Select Case selectedId | |
| Case Else | |
| MsgBox "The selected ItemID of Gallery-Control """ & control.ID & """ is : """ & selectedId & """" & vbCrLf & _ | |
| "Die selektierte ItemID des Gallery-Control """ & control.ID & """ ist : """ & selectedId & """", _ | |
| vbInformation | |
| End Select | |
| End Select | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment