tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,924
- Office Version
- 365
- 2019
- Platform
- Windows
This is my xml code to add a custom ribbon and an edit box:
What I want is if I put a value, say 10 into the edit box, then save and close the workbook, the next time I open the workbook, I want the value of 10 to remain in the edit box.
Is that possible?
Code:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon startFromScratch="true">
<tabs>
<tab id="CustomTab" label="My Tab">
<group id="Group1" label="MyGroup">
<editBox id="MyEditBox"
label="enter text"
onChange="EditBox_OnChange"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
What I want is if I put a value, say 10 into the edit box, then save and close the workbook, the next time I open the workbook, I want the value of 10 to remain in the edit box.
Is that possible?