S
SS
Refer the article at http://support.microsoft.com/?id=899919
An excerpt from the article is pasted below
"
Specifics about the Outlook object library
The Outlook object library provides the new functionality, starting with
Office Outlook 2003 SP2. This change will also be included in future versions
of Outlook.
"
I am not able to find this GlobalObjectID or any similar names in the
Outlook Object Model with SP2.
Little background of the application and configuration:
I am writing an application that uses .Net Framework 1.1 with C# language
that talks to Outlook 2003 with and without SP2.
Problem:
(1) I am not able to get the Global Object ID from Outlook. I am putting the
Outlook DLL from COM tab in references in Visual Studio 2003.
(2) Is there a way to access CDO 1.21 objects using C#?
(3) With Redemption (For those who know about this 3rd party dll), I have
issue in getting the Global Object ID. The code snippet is pasted below.
int propertyID =
safeAppointmentItem.GetIDsFromNames("{6ED8DA90-450B-101B-98DA-00AA003F1305}",
0x03);
// This line is failing and the id object returned is null <undefined>.
object id = safeAppointmentItem.get_Fields(propertyID);
Kindly help with answers for the above questions.
Thanks in advance.
SS
An excerpt from the article is pasted below
"
Specifics about the Outlook object library
The Outlook object library provides the new functionality, starting with
Office Outlook 2003 SP2. This change will also be included in future versions
of Outlook.
"
I am not able to find this GlobalObjectID or any similar names in the
Outlook Object Model with SP2.
Little background of the application and configuration:
I am writing an application that uses .Net Framework 1.1 with C# language
that talks to Outlook 2003 with and without SP2.
Problem:
(1) I am not able to get the Global Object ID from Outlook. I am putting the
Outlook DLL from COM tab in references in Visual Studio 2003.
(2) Is there a way to access CDO 1.21 objects using C#?
(3) With Redemption (For those who know about this 3rd party dll), I have
issue in getting the Global Object ID. The code snippet is pasted below.
int propertyID =
safeAppointmentItem.GetIDsFromNames("{6ED8DA90-450B-101B-98DA-00AA003F1305}",
0x03);
// This line is failing and the id object returned is null <undefined>.
object id = safeAppointmentItem.get_Fields(propertyID);
Kindly help with answers for the above questions.
Thanks in advance.
SS