You are here:   Combobox - getItemImage

Combobox - getItemImage

 

ComboBoxSets the item image of a specific item.

 











Sample Ribbon XML file:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="CallbackOnLoad">
    <ribbon startFromScratch="false">
        <tabs>
            <tab id="MyTab" label="Sample ComboBox">
                <group id="MyGroup" label="Sample ComboBox">
                    <labelControl id="myLabel1" label="Sample:" />
                    <labelControl id="myLabel2" label="ComboBox" />
                    <comboBox id="myComboBox" label="My ComboBox:" 
                      showLabel="true"
                      getItemImage="CallbackCBGetItemImage" 
                      getItemCount="CallbackCBGetItemCount" 
                      getItemLabel="CallbackCBGetItemLabel" 
                      getItemScreentip="CallbackCBGetItemScreentip" 
                      getItemSupertip="CallbackCBGetItemSupertip" 
                      getItemID="CallbackCBGetItemID" 
                      imageMso="PictureEffectsGlowGallery" 
                      onChange="MyComboBoxCallbackOnChange" 
                      sizeString= "WWWWWWWWWWWWW" 
                      getText="CallbackCBGetText">
                    </comboBox>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>  

Function to be copied to a standard module:

Sub CallbackCBGetItemImage(control As IRibbonControl, _
                            index As Integer, _
                            ByRef image)
    ' Callback getItemImage
    Select Case control.ID
        Case "myComboBox"
            Set image = LoadPicture(getAppPath & _
                        "Pictures\" & _
                        Format(index, "00") & ".JPG")
       'Case else 'or a ImageMso 
           image = "HappyFace" 
    End Select
End Sub



You can find this sample in Sample DB 2

 




Back

Last Updates:

18.03.2021
New Download added. ...

25.10.2018
Update Site "Trusted Locations" ...

22.10.2018
New Download added. ...

08.04.2018
IDBE RibbonCreator 2016 (x86 and x64) for Office 2013 and Office 2016 - new release. ...

 

Last update: