You are here: Combobox - onChange
Combobox - onChange
Called when the user commits text in a combo box.
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 MyComboBoxCallbackOnChange(control As IRibbonControl, _ strText As String) ' Callback onChange Select Case control.ID Case "myComboBox" MsgBox "You have " & strText & " selected", _ vbInformation, _ "ComboBox Sample" End Select End Sub
You can find this sample in Sample DB 2