Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active July 30, 2019 12:27
Show Gist options
  • Save rediffusion/fec972dfc5119d976a3cb3d1703bc619 to your computer and use it in GitHub Desktop.
Save rediffusion/fec972dfc5119d976a3cb3d1703bc619 to your computer and use it in GitHub Desktop.
NOTE: Для »» `Gallery` аналогично.
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
<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