You are here:   EditBox - onChange

EditBox - onChange

 

EditBoxCalled when the users commits text within the EditBox.

 




Sample Ribbon XML file:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
    <ribbon startFromScratch="false">
        <tabs>
            <tab id="MyTab" label="Sample EditBox">
                <group id="MyGroup" label="Sample EditBox">
                    <labelControl id="myLabel1" label="Sample:" />
                    <labelControl id="myLabel2" label="Editbox" />
                    <editBox id="MyEditBox" label="My EditBox: " 
                      getText="MyEditBoxCallbackgetText" 
                      onChange="MyEditBoxCallbackOnChange"/>
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>  

Function to be copied to a standard module:

Sub MyEditBoxCallbackOnChange(control As IRibbonControl, _
                              strText As String)
    ' Callback onChange
    Select Case control.ID
        Case "MyEditBox"
                MsgBox "Value Editbox: " & _
                       strText, vbInformation, "Sample EditBox"
    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: