Saving configuration settings

Add-in Express™ Support Service
That's what is more important than anything else

Saving configuration settings
With C# Outlook Add-In 
JuliaCase


Guest


Until I can post under my real account I'll use this.

I would like to know if here is a standard way to store configuration settings for an Outlook add-in? If using Visual Studio 2005, can I use the System.Configuration classes? If so, where will they be stored?

Thanks,
Julia
Posted 13 Nov, 2004 14:25:18 Top
Sven Heitmann




Posts: 193
Joined: 2004-08-23
AFAIK there is no builtin support for writing values to a config file, however there is suppport for reading configuration data.

Unfortuately this is only working with Application (exe) Files.

You have to program your own System or search for a 3rd-Party Library.

Some Basic implementation is when You create a Class that holds your Settings and you Serialize/Deserialize it to a File.

Best regards,

Sven Heitmann
Posted 15 Nov, 2004 03:55:06 Top
Sergey Grischenko


Add-in Express team


Posts: 7233
Joined: 2004-07-05
Hi Julia,

ADX provides you with the Outlook Property Page Wizard that allows you to add your settings to the addin. You can place any .NET visual controls on this page and save your settings either in the registery or in a file.
Posted 15 Nov, 2004 05:14:50 Top
Jilia Case


Guest


I guess my best bet is try and use the Application Configuration Management Code Block from Microsoft and put my esttings in there.

my configuration is a little more complicated than serializing a class will work with.

Thanks,
Julia
Posted 15 Nov, 2004 19:56:35 Top