VSTO Outlook add-in: Categories not displaying correctly

  • Thread starter Thread starter TTT
  • Start date Start date
Status
Not open for further replies.
T

TTT

An Outlook add-in is not working correctly on a client site.

The add-in should change the Categories of an Inbox email. We want the Categories to change to "Reg'd" when the user registers an Inbox email to our database via the add-in.

On a particular clients machine, this will work OK if the email has been opened, but will not make any change to the Categories if the email hasn't been opened, just selected and right clicked to access the add-in menu. In all cases, the email has been properly sent to the database. I am pretty sure the line of code to update Categories is being called in all instances.

I can't reproduce this error to debug on my machine, where Categories updates correctly in all cases.

All machines are on 2003 SP 3. The client is operating outlook via terminal services. Could this cause problems?

What can cause the Categories column to not update correctly in cases like this?.
 
It's certainly possible that terminal services has something to do with it,

but I don't see how. If your code is modifying specific items the category

is being added as a one-off on the items. So it shouldn't matter if the

category is in the master list as a custom category or not (those are stored

in the registry for Outlook 2003).

That it works when the change is made to an Inspector but not in an Explorer

context menu would also tend to indicate that TS has nothing to do with it,

the end result would be the same in either case.

I would add additional logging to see if the code is actually hit and does

run without exceptions. I'd also see what's different on that user's machine

than on others where the code runs. Addins and any other code that

interfaces with Outlook should be checked and disabled to see if they have

any effect.

"TTT" <alistair[at]timetracer[dot]com[dot]au> wrote in message

news:uTX4iBg1KHA.264@TK2MSFTNGP05.phx.gbl...
> An Outlook add-in is not working correctly on a client site. The add-in
> should change the Categories of an Inbox email. We want the Categories to
> change to "Reg'd" when the user registers an Inbox email to our database
> via the add-in.
> On a particular clients machine, this will work OK if the email has been
> opened, but will not make any change to the Categories if the email hasn't
> been opened, just selected and right clicked to access the add-in menu. In
> all cases, the email has been properly sent to the database. I am pretty
> sure the line of code to update Categories is being called in all
> instances.

> I can't reproduce this error to debug on my machine, where Categories
> updates correctly in all cases.
> All machines are on 2003 SP 3. The client is operating outlook via
> terminal services. Could this cause problems?

> What can cause the Categories column to not update correctly in cases like
> this?.
 
I have found a related problem that I can reproduce. I think if I can fix this it may fix the original problem.

When I select multiple emails and register them to our database, only the first one selected has its Category changed to Reg'd. The others' behaviour depends on what mail server I am running. If I am on a POP account, the Category does not change. On a Microsoft Exchange Server at first the "Reg'd" doesn't show, but if I click on the email and then off, it appears.

The code is effectively like this, with my logging added to double check that the correct string is going in.

foreach (Outlook.MailItem mailItem in _emails)

{

mailItem.Save();

// Add the registered category to the mail item

CategoryHelper.AddCategory(mailItem, EmailManager.RegCategory);

MessageBox.Show(mailItem.Categories);

//We have to save the email if the properties are to stay.

mailItem.Save();

MessageBox.Show(mailItem.Categories);

}

If I run this with two emails selected the following happens

MessageBox Reg'd

The first email Category changes to Reg'd

MessageBox Reg'd

MessageBox Reg'd

No change in second email

MessageBox Reg'd

So the Save works for the first email, but not the second.

Any explanations?


> kenslovak wrote on Wed, 07 April 2010 09:22
> It's certainly possible that terminal services has something to do with it,
> but I don't see how. .
 
I have no explanation for that and I've never seen anything like that

happen. Offhand the code looks OK but I have no idea what that helper is

doing or if it might cause an exception that might prevent adding a

category.

"TTT" <alistair[at]timetracer[dot]com[dot]au> wrote in message

news:uu0ixg71KHA.5880@TK2MSFTNGP05.phx.gbl...
> I have found a related problem that I can reproduce. I think if I can fix
> this it may fix the original problem.

> When I select multiple emails and register them to our database, only the
> first one selected has its Category changed to Reg'd. The others'
> behaviour depends on what mail server I am running. If I am on a POP
> account, the Category does not change. On a Microsoft Exchange Server at
> first the "Reg'd" doesn't show, but if I click on the email and then off,
> it appears.

> The code is effectively like this, with my logging added to double check
> that the correct string is going in.

> foreach (Outlook.MailItem mailItem in _emails)
> {

> mailItem.Save();

> // Add the registered category to the mail item
> CategoryHelper.AddCategory(mailItem,
> EmailManager.RegCategory);

> MessageBox.Show(mailItem.Categories);

> //We have to save the email if the properties are
> to stay.
> mailItem.Save();

> MessageBox.Show(mailItem.Categories);
> }

> If I run this with two emails selected the following happens

> MessageBox Reg'd
> The first email Category changes to Reg'd
> MessageBox Reg'd
> MessageBox Reg'd
> No change in second email
> MessageBox Reg'd

> So the Save works for the first email, but not the second.

> Any explanations?
>
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
A Not able to load an add-in for outlook 2007 developed in VSTO 2005 Outlook VBA and Custom Forms 2
O VSTO - Outlook Add-In - Get GAL data Outlook VBA and Custom Forms 1
K Outlook VSTO Add-in not visible in Trust Center after installing Outlook VBA and Custom Forms 1
M Will a VSTO C# Outlook 2007 Add-in work on Outlook 2010? Outlook VBA and Custom Forms 1
M c# vsto Outlook.ApplicationEvents_11_NewMailEx Outlook VBA and Custom Forms 1
X Highlight block of text in an outlook mail using c#2008 vsto Outlook VBA and Custom Forms 1
W My VSTO 3.0 Outlook addin doesn’t load Outlook VBA and Custom Forms 1
N VSTO outlook 2007 addin installation problem Outlook VBA and Custom Forms 1
O Third-party VSTO 2005 SE plug-in for Outlook 2007: what should I signwith a publisher certificate? Outlook VBA and Custom Forms 3
O Outlook VSTO 2005 plug-in installer: CLSID = ? Outlook VBA and Custom Forms 3
E Opening WinForm in Outlook 2003 VSTO Addin with Wordmail enabled Outlook VBA and Custom Forms 1
M Develop for OL2003 on OL2007 machine using VS2008 and VSTO? Outlook VBA and Custom Forms 1
E VSTO 2008 how to bind Form Region controls to Item data fields Outlook VBA and Custom Forms 2
E VSTO 2008 how to bind Form Region controls to Item data fields Outlook VBA and Custom Forms 3
M VSTO deployment? Outlook VBA and Custom Forms 1
M VSTO C#: How do I declare an application scope variable? Outlook VBA and Custom Forms 2
S VSTO calling unmanged function Outlook VBA and Custom Forms 3
G Interop or VSTO or ? Outlook VBA and Custom Forms 2
M VSTO 2007 Addin auto-disabled on one machine but not another on installation? Outlook VBA and Custom Forms 1
O using VSTO to get Available Mailboxes Outlook VBA and Custom Forms 11
M Outlook2007 and VSTO, handle the Click on the Save Button in the IPM.Note dialog HOWTO? Outlook VBA and Custom Forms 4
M VSTO Outlook2007 Addin. After switching from 3.5 to 2.0 Framework i get "'MSB3185: EntryPoint not sp Outlook VBA and Custom Forms 1
C Problem installing VSTO AddIn on Vista Outlook VBA and Custom Forms 3
Y Outlook 2016 (64-bit) Copy Local Cal. Events to Another Cal. with Modified Reminder time Using Outlook 0
T Outlook 2019 While connecting an IMAP account in "classic" Outlook 2024 I caused a massive duplication of emails on the server (death loop) Using Outlook 5
collectible Optimizing Email Productivity: Tips & Tricks for Using Outlook Efficiently Using Outlook 0
D Cannot logon to Outlook.com, or outlook on Mac, outlook not updating on ipad, iphone Using Outlook 1
J unable to get my new install of Outlook to display mailboxes in the single-line format. Using Outlook 1
D Legacy Microsoft Outlook for Mac Support will end in Oct 2025 Using Outlook 5
C Nasty Bug Lurking In Outlook For Years. The Trigger. Any Fix Or Workaround? Using Outlook 11
R Auto clicking Hyperlink in outlook Outlook VBA and Custom Forms 7
ughlook Open multiple contacts in NEW Outlook? Using Outlook 2
G Outlook translation feature is off Using Outlook 2
J Outlook 2010 does not let me put any account Using Outlook.com accounts in Outlook 3
P 3 of 5 PST files don't install from d:\outlook but only from D:\ Using Outlook 7
HarvMan January Windows 10 preview update force installs new Outlook Using Outlook 1
L Outlook 2010 - new installation on Windows 11 - aplzod32.dll is not a valid Add-in Using Outlook 12
J Outlook troubleshooting/logging - option grayed out Using Outlook 2
B Arrows missing from Outlook emails vertical scrollbar Using Outlook 0
G Outlook 2021 (New) doesn't respect default browser Using Outlook 9
B Outlook or iPhone turning tabs into spaces in Outlook Notes Using Outlook 1
P newly installed Office 365 includes OLD Outlook Using Outlook 6
R Outlook ribbon menu default? Using Outlook 7
H Spam email in Gmail not visible in Outlook Using Outlook 3
J How to transfer Win 10 Outlook to new Windows 11 pc? Using Outlook 16
J Renegade spam URL line displayed in old local Outlook 365 email title Using Outlook 3
G Reduce whitespace in Outlook desktop Contact Cards display Using Outlook 3
C Outlook classic via 365 Using Outlook 2
Dr. Demento Analogous Outlook code to read info into an array (or collection or whatever) Outlook VBA and Custom Forms 7
S Repair Outlook Using Outlook 8

Similar threads

Back
Top