Icons does not appear in a CommandBar : Catastrophic failure throw
Mon, 15 Sep 2008 11:21:01 -0700
I am using outlook 2003. When creating a new mail with WordEditor enabled, an
exception is thrown. I tried to debug and the exception gets thrown (see
code below) when I try to set the picture/mask property of a button.
My buttons are created by my outlook add-in with my word add-in disabled.
If I disable the ...
|
Explorer.SelectionChange event triggered multiple times
Mon, 15 Sep 2008 08:56:01 -0700
Sometimes when I change the selection in the explorer the SelectionChange
event gets triggered twice, other times it gets triggered once. I've been
able to fix it somewhat by filtering out when a MailItem is UnRead, but when
clicking through my read emails, I still get multiple triggers per MailItem.
I hoo ...
|
How to add a contact to a journal item?
Fri, 12 Sep 2008 23:53:00 -0700
Hi
I use the following code to create a journal item in outlook:
pApp.CreateInstance(__uuidof(Application));
pApp->CreateItem(olJournalItem,(IDispatch**)&pCallInfo);
pCallInfo->put_ContactNames(bsCaller);
pCallInfo->put_Subject(bsSubject);
pCallInfo->put_Body(bsBody);
pCallInfo->put_Type(bsType);
pC ...
|
Duplicate CustomTaskPane Windows - Help!
Thu, 11 Sep 2008 07:44:01 -0700
During debugging of my Outlook 2007 CustomTask Pane, sometimes it appears
twice in outlook. How do i prevent this from happenng. Have tried all
varieties of:
//see if already loaded
if (CustomTaskPanes.Count > 0)
{
foreach (Microsoft.Office.Tools.Custo ...
|
Minimized Task Pane
Thu, 11 Sep 2008 01:01:01 -0700
How can I create a TaskPane that can be minimized?
I am trying to create a task pane that is similar to the "To-Do" pane or
Xobni pane.
I am using the CustomeTaskPane for some time, and you cannot get the
minimized functionallity mentioned above.
Regards ...
|
Moving a Recall Message in Outlook
Wed, 10 Sep 2008 13:14:09 -0700
I have an Outlook Add-in application that runs on Outlook 2003. It processes
emails that come into the Inbox, strips out needed information, and then
moves the emails to another folder, using the MailItem.Move() method. It
works fine until it tries to move a Recall email. When that happens, Outlook
will d ...
|
Prevent users from moving or deleting a folder in Outlook
Wed, 10 Sep 2008 12:59:24 +0100
How can I prevent users from deleting/moving a folder in
Outlook/exchange that is created by my application? On solution might
be to create an outlook plug-in and handle the event which is triggered
before a folder is deleted. I could find an Outlook Object Model event
FolderRemove but it gets triggered after the d ...
|
|
|
VSTO SE + Outlook 2003 on Vista -> Addin does not start after upda
Wed, 10 Sep 2008 07:18:01 -0700
I have an addin that was devd and deployed to 100+ users. These users are
running XP PRO and Office 2003.
THe addin has a cas policy, and a second addin that forces updates. This
method is working without an issue on the xp boxes. However, testing this on
a Vista box shows the addin updater update the addin ( ...
|
Attempted to read or write protected memory
Wed, 10 Sep 2008 06:16:15 -0700 (PDT)
hello
I've AX ctrl (vb6) placed on a form region adjoined to Message
form.This ctrl raises an event after 2 seconds each (say myevent)
which is handled in VSTO addin
mailWrapperclass.I need to save mailitem in that event in order to get
the recipients correctly.But I get exception " Attempted to read or
writ ...
|
Prevent users from moving or deleting a folder
Wed, 10 Sep 2008 05:50:00 -0700
How can I prevent users from deleting/moving a folder in Outlook/exchange
that is created by my application? On solution might be to create an outlook
plug-in and handle the event which is triggered before a folder is deleted. I
could find an Outlook Object Model event FolderRemove but it gets triggered
afte ...
|