microsoft.public.outlook.program_addins
  Home FAQ Contact Sign in
microsoft.public.outlook.program_addins only
 
Advanced search
December 2008
motuwethfrsasuw
1234567 49
891011121314 50
15161718192021 51
22232425262728 52
293031     1
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
... lic.outlook.program_addins Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Disable/lock reading pane         


Author: Ramazan
Date: Sep 22, 2008 12:15

In outlook while opening encyryted mail in reading that was
message : "This item cannot be displayed in the Reading Pane. Open the
item to read its contents." and its context was locked.
I want to disable and lock reading pane for a custom type of mail.
How can i do this COM add-in?with c++?How can i get pointer of reading
pane?
Thanks in advance
Ramazan
no comments
  How to tell when Outlook is fully loaded?         


Author: Stuart Parker
Date: Sep 22, 2008 07:29

Hi,

So when outlook starts up, it loads my addin, and my addin's startup runs.
In the meantime outlook is loading other addins, and trying to connect to
exchange, blah blah.

It there any way to tell when outlook has finished doing all this, and is
fully initialized? an event perhaps? I would like my addin to wait and not
do anything until outlook has fully loaded and done all it's stuff.

Cheers
2 Comments
  C# Redemtion not able to send reply         


Author: surykant.kanada
Date: Sep 22, 2008 01:28

I have following code which tries to reply to mail, however the mail
sits in drafts and displays "Message is not sent".

Redemption.RDOFolder defaultFolder = redemption.findRDOFolder("Inbox",
rdoStore);
Redemption.RDOMail rdoMail = redemption.findRDOMail("Test Subject",
defaultFolder);

//Create a replyall mail object
Redemption.RDOMail replyMail = rdoMail.ReplyAll();
replyMail.SentOn = DateTime.Now;
replyMail.Save();
replyMail.Send();

Please help
5 Comments
  Addin not loaded after recompile         


Author: DeskUser
Date: Sep 20, 2008 23:16

Hello

I am developing an office addin using .net 1.1 .

I set the build output path of the addin project to the instalation
path of the addin.

Neverthless, after each compilation the addin is not loaded into
office applications,

It works only after i rebuild the setup project and reinstall the
addin.
1 Comment
  minimized CustomeTaskPane         


Author: danny
Date: Sep 19, 2008 20:01

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.

I have tried using the Width property but it seems like the CTPs have
minimum with (which is longer than the one I need)

Regards
no comments
  Exception iterating thru inbox mailitems         


Author: Stuart Parker
Date: Sep 19, 2008 16:44

Hi

If I use a For Each to iterate through the inbox mailitems, I get the
following exception after a few items are processed:

Unable to cast COM object of type 'System.__ComObject' to interface type
'Microsoft.Office.Interop.Outlook._MailItem'.
This operation failed because the QueryInterface call on the COM component
for the interface with IID '{00063034-0000-0000-C000-000000000046}' failed
due to the following error: No such interface supported (Exception from
HRESULT: 0x80004002 (E_NOINTERFACE)).

What's going on ?

Cheers
5 Comments
  MailItem SaveAs         


Author: Koen Verwimp
Date: Sep 19, 2008 14:42

Hello,

When I save a mail to MSG file programmatically with SaveAs on MailItem, I
can't read the PR_BODY property afterwards. I tried also with Outlook Spy to
read that propery, but the PR_BODY property is empty. Opening the MSG file in
outlook displays the body, but can't the property PR_BODY property.

After dragging it into my Inbox again, PR_BODY is filled again. The binary
format is also not the same if I save the mail as MSG programmatically versus
File->Save in Outlook. After saving the mail via File->Save in outlook ...
the PR_BODY is available.

What is happening here with SaveAs programmatically?

thanks,
Koen
2 Comments
  Panel.Width not accurate during runtime         


Author: Paulem0071
Date: Sep 19, 2008 07:49

All,

I have a panel in my Outlook Add-In window. I need to get the panel.Width
of the panel, but at runtime it returns the designtime Width, not the Width
adjusted for docking, anchoring etc.

Any ideas?

Thank you.
no comments
  Delete quoted messages         


Author: tortho
Date: Sep 19, 2008 04:02

Hi,

If I send a message get a reply and send it off again I end up with a
few messages.
If everything is quoted everytime I will end up with some messages I
could delete and still have the full conversation.

Is there a tool to search for things like this?

I get a huge amount of messages everyday and there is just not enough
hours every day to perform this type of job.... I'm now on my 4th 1,5
GB .pst file!!

Any input on this would be appreciated...

BTW, I also have to keep attachments... so that has to be checked, not
only the text in the mails....

--
tortho
1 Comment
  BeforeFolderMove Event         


Author: Juuso
Date: Sep 19, 2008 02:58

Hi,

I'm using VS2008 & Outlook 2007. My application tries to watch Outlook
folders, their additions, renames, moves and deletions.

I have a wrapper class for a folder that has class level variables for
folder (Outlook.Folder) and it's subfolders (Outlook.Folders). When this
class is initialized, these variables are set and events attached (see below
my code). In ThisAddin_Startup "watched" folder and it's subfolders are
iterated, wrapper classes created and added to a class level hashtable.

The problem is, BeforeFolderMove for a folder in my wrapper class fires only
occasionally, but folder addition and change always do. This shouldn't be a
scope issue, as the two other events do fire. Or what's happening?

Thanks for any help.

...
private Outlook.Folders _folders;
private Outlook.Folder _folder;
Show full article (1.31Kb)
4 Comments
1 2 3 4 5 6 7 8 9