Erase add-ins
Mon, 8 Mar 2010 09:07:01 -0800
I don´t know if this is the correct forum. I have deleted McAfee antivirus
and Sony Ericsson syncware.
When I open Outlook I get message that "Outlooks can´f find ....erase the
add-in...
The problem is that I don´t find the add-in into Outlook.....
Where please do I find it?
//Fred ...
|
Adding new propertypages
Mon, 8 Mar 2010 08:31:29 +0100
Hello NG
Using Visual Studio Team System 2008 Development Edition i am creating a
VSTO Addin for Outlook 2007
The initial code looks like this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Outlook = Microsoft.Office.Interop ...
|
How to call a procedure from a custom command bar in Outlook 2007
Sat, 6 Mar 2010 23:42:01 -0800
Hello and TIA for your assistance,
I am trying to convert VBA code in OL07 to an Add-in in VB6.
The Add-in creates a custom command bar with three buttons and fires code
when a new inspector is created.
When I load the add-in the command bar appears, the new inspector code fires
and the add-in disconnec ...
|
Outlook and iCalendar
Thu, 4 Mar 2010 08:29:08 -0800 (PST)
Hello,
I am writing a MAPI addin for Outlook that would generate iMip style
messages for meeting requests, responses and cancellations. I know
Outlook configured to work with IMAP is able to generate and consume
such iMip (iCalendar messages), and was wondering if there is some
method/functionality exposed in ...
|
Get AutoArchive settings (as set from Tools|Options|Other|AutoArch
Tue, 2 Mar 2010 20:37:01 -0800
Is there a way to get the default AutoArchive settings using the Outlook
(2007) object model using VB (VS2008)?
I want to programmatically determine where each outlook folder and
subfolders are being autoarchived to.
With the following:
Dim si As StorageItem = oFolder.GetStorage("IPC.MS.Outlook.AgingPropert ...
|
Get recipient's email address
Wed, 3 Mar 2010 15:29:09 +1300
VSTO, OL2007, C#
From our Add-in, most of the time mail.Recipients[1].Address works to return
the recipients email address as say joe.smith@company.com
However, I noticed the following was returned for mail.Recipients[1].Address
this morning from one site instead of an email address:
/O=COMPANY1/OU=FIRS ...
|
Use Redemption to get sender's email address
Wed, 3 Mar 2010 11:27:38 +1100
Hi:
I can get recipient's email by using Redemption:
Redemption.MAPIUtils utils = new Redemption.MAPIUtils();
utils.MAPIOBJECT = this.Application.Session.MAPIOBJECT;
int PrSMTPAddress = 0x39FE001E;
string AddresseeEmail = (string)utils.HrGetOneProp(mail.Recipients[1].AddressEntry.MAPIOBJECT, PrSMTPAddres ...
|
|
|
Outlook access for Domino server 8.0 and 8.5
Mon, 1 Mar 2010 07:13:11 +0000
Hi all,
Please help me how to use outllok with domino 8.0 and 8.5;
what are the prerequisites for outlook and for Domino 8.0 and 8.5
Please give me link which will describe how to install the prereuisites
for outllok and domino and configure.
thanks in advance.
--
guruk99 ...
|
How do I delete Search folders?
Sat, 27 Feb 2010 09:33:29 +1300
OL2007, VSTO
On Addin exit, I am trying to delete all search folders I previously
programmatically created so that next time OnAddin startup, I can recreate
them cleanly (in order to try and workaround unexpected behavior such as
folder italicization after 1 or 2 days).
When I walk through the code I see ...
|
_MailItem->GetSendOn(&date) throws an exception
Fri, 26 Feb 2010 19:17:43 GMT
Hi All,
I am migrating my plugin from 2003 to 2007 Outlook.
A following code is throwing me exception:
<code>
COleVariant covIndex;
covIndex.vt = VT_I4;
covIndex.lVal = 1;
olSelectedItem = olSel->Item(covIndex);
CComQIPtr<Outlook::_MailItem> pMailItem(olSelectedItem);
CComPtr ...
|