OK, if this is only for Outlook 2007 or later then I'd recommend using a
StorageItem for that. A StorageItem is what's know in MAPI circles as a
hidden item, in the Associated Contents table for a folder. You can use a
StorageItem in any folder and it's invisible to the user. It can only be
accessed using code, so users can't mess around with your hidden storage.
Using that you can store the list in the body of the hidden item as a
newline separated list and then just split the body on newlines (carriage
return + line feed) when you want to recover or modify the list.
That way the list will travel with the PST file and should do what you want.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"escamoteur" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Sorry for not beeing more specific.
>
> It's Outlook 2007 and it will be a single user plugin that should be
> configurable by the user. I want to have everything stored in the .pst
> file if possible.
>
> Think of the list like the Categories of outlook items, only that this
> categories only belong to my item type. The user should be able to add and
> delete categories that he needs.
>
> Best
>
> Tom