![]() |
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
|
|||
|
|||
![]()
I am using Windows XP pro with Office 2003. Within Outlook, I have a
series of macros to facilitate handling of specific emails. Within this, one function is to extract the sender's email address using CDO - which fails (Code below). I use the same .otm file on a different machine wito Windows XP pro and Outlook 2002, and it's perfect. CDO 1.21 is referenced. Any thoughts would be appreciated Regards Derek Option Explicit Public G_objSession As MAPI.Session Sub SetCDOSession() ' start CDO session Set G_objSession = CreateObject("MAPI.Session") G_objSession.Logon , , False, False End Sub Sub UnsetCDOSession() ' start CDO session Set G_objSession = Nothing End Sub Function GetFromAddress(objMsg As MailItem) As String Dim strEntryID As String Dim strStoreID As String Dim objCDOItem As MAPI.Message ' get EntryID and StoreID for message strEntryID = objMsg.EntryID strStoreID = objMsg.Parent.StoreID If G_objSession Is Nothing Then ' Set the CDO Session up as it doesn't exist. Call SetCDOSession End If ' pass item to CDO and get sender address On Error Resume Next Set objCDOItem = G_objSession.GetMessage(strEntryID, strStoreID) GetFromAddress = objCDOItem.Sender.Address Set objCDOItem = Nothing End Function *** Sent via Developersdex http://www.developersdex.com *** |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
MAPI Session Logon error | AVIS | Outlook and VBA | 17 | April 29th 08 02:12 PM |
CDO Outlook security prompt hangs, vb script Mapi Session | [email protected] | Outlook and VBA | 2 | April 17th 08 12:03 PM |
OLK2007 : The Oper Failed : Application.CreateObject("MAPI.Session | Bill Billmire | Outlook - Using Forms | 3 | January 7th 07 02:02 AM |
Error creating an MAPI session | Dominique Schroeder | Outlook - Using Forms | 1 | March 7th 06 03:25 PM |
MAPI failure with Outlook\Exchange 2003 (MAPI_E_NOT_ME) | charlied | Outlook - General Queries | 0 | February 10th 06 07:20 PM |