Platform SDK: CDO 1.2.1 |
The GetMessage method returns an AppointmentItem, MeetingItem, or Message object from a MAPI message store.
Set objMessage = objSession.GetMessage(messageID [, storeID] )
The GetMessage method allows you to obtain directly any AppointmentItem, MeetingItem, or Message object for which you know the ID property. You do not have to find and open the folder containing the message or the InfoStore containing the folder.
If CDO 1.2.1 and Microsoft® Outlook™ 98 are sharing a stored profile, GetMessage always returns a Message object, even if an AppointmentItem or MeetingItem object is specified by the messageID parameter. To avoid this behavior, the recommended procedure is to use different profiles for CDO and Outlook 98. You can do this by specifying separate stored profiles for each, or by supplying the ProfileInfo parameter in the Session object's Logon method.
This code fragment displays the subject of a message from a MAPI message store:
' fragment from Session_GetMessage ' requires the parameter strMessageID; ' also uses strMessageStoreID if it is defined If strMessageID = "" Then MsgBox ("Must first set string variable to message ID") Exit Function End If If strMessageStoreID = "" Then ' not present Set objOneMsg = objSession.GetMessage(strMessageID) Else Set objOneMsg = objSession.GetMessage(messageID:=strMessageID, _ storeID:=strMessageStoreID) End If