Sie sind hier: DropDown - onAction
DropDown - onAction
Callback wenn auf ein Item geklickt wurde.
Beispiel XML Ribbon Datei:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
<ribbon startFromScratch="false">
<tabs>
<tab id="MyTab" label="DropDown Beispiel">
<group id="MyGroup" label="DropDown Beispiel">
<labelControl id="myLabel1" label="Beispiel:" />
<labelControl id="myLabel2" label="DropDown" />
<dropDown id="myDropDown"
label="Mein Dropdown:"
showLabel="true"
getItemImage="CallbackDDGetItemImage"
getItemCount="CallbackDDGetItemCount"
getItemLabel="CallbackDDGetItemLabel"
getItemScreentip="CallbackDDGetItemScreentip"
getItemSupertip="CallbackDDGetItemSupertip"
getItemID="CallbackDDGetItemID"
imageMso="PictureEffectsGlowGallery"
getSelectedItemID="CallbackDDGetSelectedItemID"
onAction="CallbackDropDownOnAction"
sizeString= "WWWWWWWWWWWWW">
</dropDown>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Funktion in einem Standardmodul:
Sub CallbackDropDownOnAction(control As IRibbonControl, _
selectedId As String, _
selectedIndex As Integer)
' Callback wenn auf eiun Item geklickt wird
Select Case control.ID
Case "myDropDown"
MsgBox "Sie haben " & DLookup("txtName", _
"tblBilder", "txtPicName = '" & _
Format(selectedIndex, "00") & "'") & _
" gewählt", vbInformation, _
"DropDown Beispiel"
End Select
End Sub
Sie finden dieses Beispiel auch in der Beispieldatenbank 2

