Saving data in an add-in

S

Stewart Walker

I've created an add-in (which runs from a custom toolbar)
when first opened it presents options to the user (a form)
then the user presses ok to do the action using the
choices made on the form. I want the form to display the
choices the user made the first time next time they use
this add-in. How do I get those values to save for future
reference?

TIA

Stewart Walker
MOS Excel Expert (I wish they had some sort of VBA in that
course!!)
 
A

AA2e72E

Record the user's choice either in the Registry or in an INI file. At startup, read back the choice and take appropriate action.
 
Top