You are here: Combobox - getItemCount
Combobox - getItemCount
Sets the number of items to be displayed in the combobox.
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="MyComboBox:" 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 CallbackCBGetItemCount(control As IRibbonControl, _ ByRef count) ' Callback Count of Items Select Case control.ID Case "myComboBox" count = 4 End Select End Sub
You can find this sample in Sample DB 2