A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Outlook has already begun transmitting this message



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 10th 08, 07:54 PM posted to microsoft.public.outlook.program_addins
Dorian
external usenet poster
 
Posts: 19
Default Outlook has already begun transmitting this message

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 09:22 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.