Add-in settings storage

G

gilles.faessler

Hello,

I am developping an add-in for outlook 2003-2007 with a custom form.
The custom form is multi-language (labels, etc..). I am looking for a
way to store the translations so that it can be easily edited and
persistent.

Thank you for your advices
 
K

Ken Slovak - [MVP - Outlook]

Your addin resources file should let you handle multiple languages. How
depends on the version of Visual Studio you are using. Your code can then
handle the opening of items in the NewInspector() event and know when an
item using your custom form is being used. When the first Activate() event
fires for that item you can then set the control captions for each of your
controls based on the language at runtime.
 
Top