Last active
July 30, 2019 12:27
-
-
Save rediffusion/fec972dfc5119d976a3cb3d1703bc619 to your computer and use it in GitHub Desktop.
NOTE: Для »» `Gallery` аналогично.
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 CallbackDropDownOnAction(control As IRibbonControl, _ | |
| selectedId As String, _ | |
| selectedIndex As Integer) | |
| Select Case control.ID | |
| Case "myDropDown" | |
| MsgBox "У вас " & DLookup("txtName", _ | |
| "tblPictures", "txtPicName = '" & _ | |
| Format(selectedIndex, "00") & "'") & _ | |
| " выбрано!", vbInformation, _ | |
| "Это заголовок!" | |
| End Select | |
| End Sub |
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
| <dropDown | |
| id="myDropDown" | |
| label="My Dropdown:" | |
| imageMso="PictureEffectsGlowGallery" | |
| getItemCount="CallbackDDGetItemCount" | |
| getItemID="CallbackDDGetItemID" | |
| getSelectedItemID="CallbackDDGetSelectedItemID" | |
| onAction="CallbackDropDownOnAction" | |
| sizeString= "WWWWWWWWWWWWW"> | |
| </dropDown> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment