Forum: Outlook - Installation
January 25th 07, 07:21 AM Posted to microsoft.public.outlook.installation
|
Replies: 0
Views: 318
How to stop the uninstall Process??
Hello All,
I am working on an AddIn for Outlook 2003.
During the uninstall process If the Outlook window is open I display a
meesage to the user and want to exit from the uninstall process.
So,...
|
Forum: Outlook and VBA
January 25th 07, 07:15 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 995
BeforeUninstall isn't working in my code!!!
Thanks Ken,
Now I am closing the outlook window if it is open during the uninstall
procedure.
And in the Shutdown method I am releasing all the resources used by my AddIn.
"Ken Slovak - [MVP -...
|
Forum: Outlook and VBA
January 11th 07, 01:50 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 995
BeforeUninstall isn't working in my code!!!
Hello All,
I am developing an AddIn using VisualStudio2005 in C# for Outlook 2003.
My Addin Adds a Menu Item along with Submenus in Outlook main Menu.
After uninstalled the Addin this Custom menu...
|
Forum: Outlook and VBA
October 5th 06, 12:54 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 3
Views: 2,206
unique ID of Contact/task/calendar items
At the time of contact add
ID = olContactFolder.StoreID + "___" + olContactItem.EntryID;
and then in nother differnet function, when I used the following piece of
code then following error...
|
Forum: Outlook and VBA
October 4th 06, 04:31 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 3
Views: 2,206
unique ID of Contact/task/calendar items
IS there ant unique id exist for contact/task/calendar items
I used combinely the entryId and storeID to create unique id .
When Iused function GetFolderFromID(storeid,entrid) to get the item, it...
|
Forum: Outlook and VBA
September 30th 06, 06:36 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 9
Views: 1,384
ContactItem.Save()
Thanks a lot Ken Slovak,
Now the sync problem has removed the instantiate and uninstantiation logic
of classes worked. But I didn't make the collecion.
Now the problem is all my classes related to...
|
Forum: Outlook and VBA
September 28th 06, 02:11 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 9
Views: 1,384
ContactItem.Save()
"Virda" wrote:
Thanks a lot Ken Slovak
I think you are right but problem is if I disable all these events then
How can I get the event from Outlook in that case
whenever user add/edit/delete...
|
Forum: Outlook and VBA
September 28th 06, 11:27 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 9
Views: 1,384
ContactItem.Save()
Thanks a lot Ken Slovak
I think you are right but problem then How can I get the event from Outlook
whenever user add/edit/delete any Contact/Task/Calendar item.
Currectly I registered these...
|
Forum: Outlook - Using Contacts
September 28th 06, 08:21 AM Posted to microsoft.public.outlook.contacts
|
Replies: 1
Views: 758
|
Forum: Outlook and VBA
September 22nd 06, 12:53 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 0
Views: 368
How to Unregister events
Hello List,
I want to unregister some events,
When execuation code reached to the line
tems.ItemAdd -= new
Outlook.ItemsEvents_ItemAddEventHandler(this.Items_ItemAdd);
it raises exception:...
|
Forum: Outlook and VBA
September 21st 06, 12:11 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 9
Views: 1,384
ContactItem.Save()
Hello Ken,
Thanks for your reply!
I tried your recomended solution but it didn't work.
Acutually during Sync/receiving all items from server I have to add into the
Outlook 2003 along with a...
|
Forum: Outlook and VBA
September 20th 06, 11:26 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 9
Views: 1,384
ContactItem.Save()
problem is whatever change is made in Contact folder's Contact Item I
capture the event 'ItemChange' and process that contactItem.
In Contact Item Add event there is a need of my program to send...
|
Forum: Outlook and VBA
September 20th 06, 10:48 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 519
|