Steven Warrell
Posts: 1
Joined: 2006-03-24
|
I have an Outlook add in project with a custom command bar. I can use the ItemTypes property to determine which folder the command bar will appear for just fine.
For example
ItemType = Mail
FolderName = *
FolderNames = Empty
works just fine.
However, if I try to limit this to one mail folder as follows
ItemType = Mail
FolderName = Inbox
FolderNames = Empty
then the command bar fails to appear at all.
What am I doing wrong?
I am using VS 2005 and have included a shim project in my solution.
|
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Steven.
You should set the full name of a folder in the FolderName property.
E.g. 'Personal Folders\Inbox'. |
|