Forum: Add-ins for Outlook
January 26th 07, 08:36 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 1
Views: 1,219
|
Forum: Add-ins for Outlook
January 25th 07, 07:15 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,428
|
Forum: Add-ins for Outlook
January 25th 07, 04:21 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 1
Views: 1,219
|
Forum: Add-ins for Outlook
January 25th 07, 04:11 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,428
|
Forum: Add-ins for Outlook
January 23rd 07, 04:53 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,428
|
Forum: Add-ins for Outlook
January 22nd 07, 09:52 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,428
|
Forum: Add-ins for Outlook
December 21st 06, 05:47 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,495
How to detect a user-deleted AppointmentItem?
What is the "ItemAdd" that you mentioned?
And how to get the deleted Items folder?
Are all the deleted Items in the same folder? For example, the deleted
AppointItems and MailItems.
"Ken Slovak -...
|
Forum: Add-ins for Outlook
December 20th 06, 05:08 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,495
How to detect a user-deleted AppointmentItem?
Thank you, Sue.
I can now cast the item.Parent property to an Outlook.MAPIFolder object, and
compare its EntryID with the former folder's EntryID, so as to determine
whether the item has been...
|
Forum: Add-ins for Outlook
December 20th 06, 10:40 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,495
How to detect a user-deleted AppointmentItem?
I deleted an AppoitmentItem using the Outlook GUI. But still I can get the
AppointmentItem with the NameSpace.GetItemFromID() method. I guessed the
method should have returned a null value but I...
|
Forum: Add-ins for Outlook
December 15th 06, 07:40 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 2
Views: 2,815
NameSpace.GetItemFromID() threw an exception
Thank you, Sue~
"Sue Mosher [MVP-Outlook]" wrote:
Use defaultFolder.StoreID, not defaultFolder.EntryID
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
...
|
Forum: Add-ins for Outlook
December 14th 06, 09:04 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 2
Views: 2,815
|
Forum: Add-ins for Outlook
December 14th 06, 07:13 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,218
How to modify an AppointmentItem?
I got it. Thank you very much, Ken.
"Ken Slovak - [MVP - Outlook]" wrote:
For any appointment check for IsRecurring. If it is recurring use the
GetRecurrencePattern method to get the...
|
Forum: Add-ins for Outlook
December 13th 06, 04:26 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,218
How to modify an AppointmentItem?
Hi, Ken. Thanks for your help so far.
I've done some further tests and discovered that ONLY the "Start" and "End"
fields of an RECURRING AppointmentItem cannot be modified. Other fields of a...
|
Forum: Add-ins for Outlook
December 12th 06, 05:47 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 5
Views: 1,137
How to acquire current Outlook.Application?
Sorry, this is wrong. The right answer should be the following:
To avoid security prompts, you need to use the Outlook.Application object
that the add-in architecture provides. In the shared add-in...
|
Forum: Add-ins for Outlook
December 12th 06, 05:46 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,218
How to modify an AppointmentItem?
My Outlook was not of an English version, but the exception should be meaning:
"You do not have the authority(privilege) to move(modify) the item."
The MAPIFolder was the default folder acquired...
|
Forum: Add-ins for Outlook
December 12th 06, 02:26 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 5
Views: 1,137
How to acquire current Outlook.Application?
I think I get it:
Outlook.Application applicationObject = new Outlook.Application()
This will do no matter Outlook has started or not.
"OctopusThu" wrote:
If Outlook has already started, I...
|
Forum: Add-ins for Outlook
December 12th 06, 09:11 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 6
Views: 1,218
How to modify an AppointmentItem?
I got an AppointmentItem from an MAPIFolder and try to modify its fields. But
an exception occurred telling me that I had got no privilege to do this......
public void modifyItem(AppointmentItem...
|
Forum: Add-ins for Outlook
December 11th 06, 09:58 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 5
Views: 1,137
|
Forum: Add-ins for Outlook
December 10th 06, 03:08 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 5
Views: 1,137
|
Forum: Add-ins for Outlook
December 8th 06, 04:39 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 2
Views: 1,080
|
Forum: Add-ins for Outlook
December 8th 06, 03:06 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 2
Views: 1,080
|
Forum: Add-ins for Outlook
November 11th 06, 04:55 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 747
How to get the ContactItems in a DistListItem?
Thanks for your help first, Dmitry.
I'm not quite familiar with the "Redemption" you mentioned. What namespace
is RDOAddressEntry in? I cannot find it in my MSDN library......
"Dmitry...
|
Forum: Add-ins for Outlook
November 10th 06, 05:11 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 747
How to get the ContactItems in a DistListItem?
Using the method DistListItem.GetMember(int), I can only get the Recipients
in the Distribution List.
However, we know that when using Outlook, we can add Contacts other than
just Recipients to a...
|
Forum: Outlook - Using Forms
November 9th 06, 06:14 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 0
Views: 447
How to get the ContactItems in a DistListItem?
Using the method DistListItem.GetMember(int), I can only get the Recipients
in the Distribution List.
However, we know that when using Outlook, we can add Contacts other than
just Recipients to a...
|
Forum: Outlook - Using Forms
November 9th 06, 06:56 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 381
|