Forum: Add-ins for Outlook
May 16th 06, 05:47 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 4
Views: 2,166
|
Forum: Add-ins for Outlook
May 2nd 06, 04:34 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 816
|
Forum: Add-ins for Outlook
May 2nd 06, 06:29 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 10
Views: 1,620
add some text into an email automatically
Your best bet would be override the Send event for the current Item
Inspector and then add your text. I have seen the process written here
before, but for the life of me can't remember it...
|
Forum: Add-ins for Outlook
May 2nd 06, 06:17 AM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 816
Launching a webpage inside Outlook programmically
I have searched for the ability to launch a external web page inside of
Outlook, including Sue Mosher's book, but it seems that I can't seem to find
a good example. Can someone be kind enough to...
|
Forum: Outlook - General Queries
March 21st 06, 07:26 PM Posted to microsoft.public.outlook
|
Replies: 3
Views: 542
Synchronising tasks
You are going to have to capture two events in your application in order
accomplish what you want. One is the Write event for the item that you are
editing; the Second is the BeforeItemDelete...
|
Forum: Add-ins for Outlook
February 13th 06, 10:46 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 1,003
Outlook Synchronization Question
The "background synching" that you are referring to is really the send and
receive action. When the synchronization starts out "sends" first to the
server. The receive is more detailed and...
|
Forum: Add-ins for Outlook
February 13th 06, 03:54 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 1,003
Outlook Synchronization Question
Your explorer has a SyncObject property. What you want to do is something
like this.
SyncObject syncObject =
currentExplorer.Application.GetNamespace("MAPI").SyncObjects[1];
syncObject.SyncStart...
|
Forum: Add-ins for Outlook
February 13th 06, 03:45 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 7
Views: 1,261
outlook doesn't closed well
This is due to the fact that you are not releasing any of your objects that
are being created by your add-in. You MUST be absolutely sure that in
explorer Close Event or some uninitHandler that...
|
Forum: Add-ins for Outlook
February 9th 06, 07:42 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 20
Views: 7,568
Command bar button FaceID Icon
I am at a loss for your problem. I wish that I could give you a more
definitive answer to your problem.
Thaddaeus.
"donald" wrote in message...
|
Forum: Add-ins for Outlook
February 9th 06, 05:41 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 20
Views: 7,568
|
Forum: Add-ins for Outlook
February 9th 06, 05:25 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 20
Views: 7,568
Command bar button FaceID Icon
I did some research on what you were trying to do. According to a thread I
found at ureader.com. Ken Slovak said that IPictureDisp constraint is that
the image must be a 16x16 256 color BMP. ...
|
Forum: Add-ins for Outlook
February 8th 06, 06:41 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 5
Views: 1,281
Inspector Wrapper utlook 2000
You have to wrap the item like so:
((ItemEvents_10_Event)mailItem).Close += new
ItemEvents_10_CloseEventHandler(mailItem_Close);
in order to get the event to be created or removed. That way you...
|
Forum: Add-ins for Outlook
February 8th 06, 06:37 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 1,735
unload COM addin problem
From the sounds of it you are attempting delete the button in the
UninitHandler AFTER the Explorer_Event_Close has already fired. The
explorer close event is where you want to get rid of all of...
|
Forum: Add-ins for Outlook
February 8th 06, 06:27 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 20
Views: 7,568
Command bar button FaceID Icon
What it looks like you are trying to do is load the picture from the
clipboard. If the picture and mask are not in the clipboard you cannot get
them out of the clipboard.
Here is my code that...
|
Forum: Add-ins for Outlook
February 8th 06, 03:55 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 20
Views: 7,568
Command bar button FaceID Icon
You can't technically create a new face id for a custom icon. What you can
do is use the PasteFace to paste a new image from the clipboard to the
button. Here are some links that could get you...
|
Forum: Outlook - Using Forms
February 6th 06, 05:32 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 1,077
MapiFolder Items ItemChange is not firing
One way I found to get around this is to have the Explorer.SelectionChange
event add the Items_Change event for the folder. The problem with the
selection change event is that it gets fired each...
|
Forum: Outlook - Using Forms
February 5th 06, 01:15 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 978
|