Last active
July 29, 2019 10:35
-
-
Save rediffusion/e7191f6cb92e0bc168f0c7756b433609 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub MyEditBoxCallbackOnChange(control As IRibbonControl, strText As String) | |
| Select Case control.ID | |
| Case "MyEditBox" | |
| MsgBox "Значение “Editbox” : " & _ | |
| strText, vbInformation, "Это заголовок!" | |
| End Select | |
| End Sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <editBox | |
| id="MyEditBox" | |
| label="My EditBox: " | |
| getText="MyEditBoxCallbackgetText" | |
| onChange="MyEditBoxCallbackOnChange"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment