![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
One of my users has been getting this message.
System.Runtime.InteropServices.COMException (0xBBC40114): Outlook has already begun transmitting this message. at Microsoft.Office.Interop.Outlook._MailItem.get_Ent ryID() at PeiceOutlookSupportTracker.ThisAddIn.Explorer_Sele ctionChange() Code: private void Explorer_SelectionChange() { try { if (m_Explorer != null) { // We only care if there is a single collection Selection sel = m_Explorer.Selection; if (sel.Count == 1) { object item = sel[1]; if (item is MailItem) { MailItem mail = (MailItem)item; if (vmHandler.LastItemId != mail.EntryID) { ...Additional code here... } } } } } } catch (Exception ex) { // Log error here } Anyone know what exactly is going on and how to make sure it doesn't occur? |
Ads |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
MAPI created Outlook message has wrong Message Type | dougolivier | Outlook and VBA | 3 | December 11th 07 04:58 PM |
How to edit message field in an outlook message form | Liz | Outlook - Using Forms | 3 | July 24th 07 09:09 PM |
can't Drag and drop an email message from an Outlook Folder into a new message | [email protected] | Outlook - General Queries | 1 | December 14th 06 11:56 PM |
Outlook 2007 e-mail message headers download but not message body | DJR | Outlook - Installation | 3 | September 13th 06 03:00 AM |
Error message when sending message in Outlook | Vikes | Outlook - General Queries | 0 | February 17th 06 10:02 PM |