Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active July 30, 2019 12:22
Show Gist options
  • Save rediffusion/4e95134d2e64e60be253058c5a1b9835 to your computer and use it in GitHub Desktop.
Save rediffusion/4e95134d2e64e60be253058c5a1b9835 to your computer and use it in GitHub Desktop.
NOTE: Для »» `DropDown ` аналогично!
Sub CallbackCBGetItemSupertip(control As IRibbonControl, _
index As Integer, _
ByRef supertip)
Select Case control.ID
Case "myComboBox"
supertip = Nz(DLookup("txtSubName", "tblPictures", _
"txtPicName='" & _
Format(index, "00") & "'"), " ")
End Select
End Sub
<comboBox
id="myComboBox"
label="My ComboBox:"
getItemSupertip="CallbackCBGetItemSupertip"
imageMso="PictureEffectsGlowGallery"
onChange="MyComboBoxCallbackOnChange"
sizeString= "WWWWWWWWWWWWW">
</comboBox>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment