JockTheKiwi0/1 20 Dec 2009
I have searched and found numerous scripts but none that export all the User details to Excel in a tabular format. I am an end user, not a developer. We are using Outlook 2007 1. I would like to be able to choose to export a List (Security or Dirstribution) from the GAL to Excel so it can be printed. I would like to have all the User fields (Name, Email Address, Phone, Address, etc). 2.
Sue Mosher [MVP...0/2 18 Dec 2009
I'm looking for a programatic way to create an Outlook profile using RPC over HTTP for full Exchange Client connecting over the Internet. I currently have a 24 page document explaining the process of creating the Outlook profile using the Mail utility in Control Panel, but I know my customers need a programatic method of making the profile quickly and correctly. Does anyone have a
Sue Mosher [MVP...0/2 17 Dec 2009
In 2003, I need to run a little utilty each time the rule is executed. I do not need to pass any information to the utility. I found references to the launcher.dll, but it looks like Microsoft has taken down that KB article. Help? Thanks, Dave
Ken Slovak - [M...0/6 16 Dec 2009
We can search mail under any folder by clicking on AdvanceFind. Outlook open a new dialog box/ Here we can specity what mails we want. Can we handle this in outlook addin when we click on findnow in Advance Find dialog? Can we know the event called by FindNow.
Ken Slovak - [M...0/2 15 Dec 2009
Hi, I modify an existing answer e-mail item (Re:) using redemption objects (VB6 AddIn project). Here is the affected code (simplified): Dim rMail As New Redemption.SafeMailItem Dim rgfAttachment As Redemption.Attachment Mailobject.Save ' answer mail item rMail.Item = Mailobject ' ### kill previous attachments ### For x = rMail.Attachments.Count To 1 Step -1 rMail.
Ken Slovak - [M...0/12 14 Dec 2009
Hi, a strange behaviour. I Developed a Custom Task Pane and want to be it visible when the user moves to a certain folder. This works fine: private void InitGlobalEvents() { Application.ActiveExplorer().BeforeFolderSwitch += new Microsoft.Office.Interop.Outlook.ExplorerEvents_10_BeforeFolderSwitchEventHandler(Explorer_BeforeFolderSwitch); } Here is the handler:
Mark McGinty0/3 14 Dec 2009
Greets, Unlike OOM objects, RDOMail objects (and derivations) do not expose a Class property (in OOM, type Outlook.OlObjectClass.) I have been working around this (converting a substantial project that relies heavily on .Class) by interpolating RDOMail.MessageClass... but isn't that going to screw me if custom forms are being used? In a couple of places I used the containing
Andritoiu0/2 14 Dec 2009
Using Outlook 2007 on Windows XP Pro. Lost Sonic Wall add in for ZoneAlarm. Don't understand the process on enabling an add-in. Tried to use Trust Center without success. Does someone have remedial instructions?
dwhitti0/1 12 Dec 2009
Do you have a solution for Outlook 2007? I can't find the Add-in to remove it. It is not in the Add-in list. I may have removed it last week while trying to correct the problem, but I am not sure. This pop-up is very annoying! I can't Uninstall AVG8.5 or re-install it, either. "Michael Bauer [MVP - Outlook]" wrote: > > > Of course, you're right if Peter wants to keep the
SeaTiger0/4 12 Dec 2009
I'm using XP PRO with Outlook 07. Can anyone recommend a free program or programs that do the following: a. adds cc or bcc automatic settings options b. manages the message filter options something like Mozilla c. gives you more options in organizing messages Thanks for your help.
Sue Mosher [MVP...0/4 11 Dec 2009
Hi, I want to create new item type (Ex : IPM.Note.testType) and create new custom form for this type. And i want to show this for on Outlook Web Access Im working with exchange 2003 Thanks in advance Ramazan
Sue Mosher [MVP...0/2 10 Dec 2009
Does Microsoft have an add-in certification program and/or any other ways to help me market my add-in or drive people to my website? Thanks, John Erickson
Ken Slovak - [M...0/2 10 Dec 2009
I know how to load the OlkComboBox, but if I want to show the user a value that he/she selected 3 days ago, how would I do that? Details: I'm using Visual Studio 2005 Professional. Visual Studio 2005 Tools for Office SE. My OlkComboBox control resides on an Outlook 2007 Addin, Separate FormRegion.
escamoteur0/4 10 Dec 2009
Hi, I just added a CustomTaskPane to my Exlorer window (Outlook 2007, COM Addin C#) It works, but it strechtes ober the whole witdh of Outlook and not only below the Explorer View as the standard preview pane. Is it possible to make the CustomPane look like a preview pane? Like it's now it just takes too much space. I just watched a video showing how to use a FormRegion to replace
Sue Mosher [MVP...0/13 08 Dec 2009
Hi, I need to send alarms as emails to a public folder and I need to be able to verify that the email has been read/opened after it has been submitted to the public folder. There is a flag on a email message that is called IsRead but that is user specific and will thus not help in this case. greatly appreciate any help rendered Cheers Gudmundur -- Gudmundur http://forums.
Andritoiu0/2 08 Dec 2009
Is tehre an answering machine add on that is recommended for use With OL 2007 either free or at a reasonable cost?
Ramazan0/1 07 Dec 2009
Hi all, I wrote outlook addin for send,open encrypted mails. I catch onOpen() onSubmit() events in exchange side. My question is this, Is there any mechanism catch events and write addin for owa(outlook web access). I must decrypt mail and show it on form. And before sending mail i must encyrpt mail. How can i do this in owa? THanks in advance Ramazan
escamoteur0/3 04 Dec 2009
Hi, in the dialog for managing views I can select the check box "use only views defined for this folder" How can I set this programmatically? Best Tom P.S.: Outlook 2007
Sebastian S.0/5 04 Dec 2009
Hello out there! Is there any chance of setting the PR_MESSAGEFLAGS property (deleting MSGFLAG_UNSENT) for an object? What I've read it should be possible just before the first savechanges call. Is this for sure? Because it doesn't seem to work here. C++ mapi code in a DLL. The mainproblem is, that i use the display() method in an Add-In (2007, c#, vsto3) which makes use of that
escamoteur0/2 04 Dec 2009
Hi, I have a strange problem. I define a new View like: void CreateViews() { string FilterActiveBOs = GetResourceString("ViewActiveOpportunities"); Outlook.Views BOViews = BO_Folder.Views; if (BOViews[GetResourceString("ViewNameActiveBO")] == null) { Outlook.View activeView = BOViews.
Dmitry Streblec...0/4 03 Dec 2009
Hello everyone, I am getting an exception when EML is converting as MSG file. Error Message : "Exception from HRESULT: 0x8007000E (E_OUTOFMEMORY)". In this case, Recipients list (To or CC field of mail Item) contains more than 500 mail IDs. Question : Is there any limit of recipients for converting EML to msg file? If yes, what is the limit? Note: By Debugging the code i
Ken Slovak - [M...0/4 03 Dec 2009
Hi, I have created a plugin for Outlook, I want add ribbon controls to my existing OUtlook plugin. When I Implement "IRibbonExtensibility" Interface in the class that was implemented "_IDTExtensibility2" Interface it throws up the following error message ATL::CComObject<Base>' : cannot instantiate abstract class with [ Base=CGrabExplorer ]
Ken Slovak - [M...0/2 03 Dec 2009
Hi, I have implemented a VSTO Outlook Add-in and created a setup project. When I install this add-in project with the setup/msi file ... files are installed properly, but VSTO Add-in isn't visible in the trust center of Outlook. This is because the registry keys are missing at [HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\ProjecT_name]. When I add the correct
tesddalw0/1 02 Dec 2009
Visitanos en www.Dsiconsolas.com COMPRAR R4I Dsi en www.Dsiconsolas.com COMPRAR R4I-SDHC.COM en www.Dsiconsolas.com COMPRAR M3i Zero en www.Dsiconsolas.com COMPRAR EZFLASH VI www.Dsiconsolas.com pW<>#$@QaNLXPY*PLEX<f(Rsk
rj0/1 01 Dec 2009
How to make money through the post HOW TO MAKE THOUSANDS IN LESS THAN A MONTH!!!!!!!!!!!!! MAKE EASY AND QUICK CASH MONEY by doing almost nothing (NO JOKE, NO SCAM, AND VERY LEGAL) Please read on! You will be very thankful you did! A little while back, I was browsing through newsgroups, just like you are now, and came across an article similar to this that said you could make
ChristianH0/7 30 Nov 2009
Hi, I have some addins that extend the Outlook menue. For Outlook 2007 I extended the Ribbons in the Inspectors. How do I extend the mainframe ribbon menue for Outlook 2010? Is it the same interface? Thanks Christian
Sue Mosher [MVP...0/2 30 Nov 2009
This is a multi-part message in MIME format. ------=_NextPart_000_0040_01CA71AE.523E4020 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, Is it possible to create a sub class to the message compose form? I want = to add my own stuff to the form, but use other great features from the = original form. Thanks, Danny
Mark B0/3 29 Nov 2009
C#, VSTO, OL2007 How do I declare an application-scope variable that will last as long as the user has Outlook open? String myApplicationScopeString="test"; I want other class methods to read and write to it over its lifetime.
Ken Slovak - [M...0/7 29 Nov 2009
How to get the folder name in any folder context menu event. Create a folder under Inbox say folder1. To delete folder1, Select folder Inbox. Right click on folder1 and select Delete. It will fire delete event for context menu. In this delete event i can get the button for Delete action on toolbar. But i do not know for which folder Delete event was called.
Dmitry Streblec...0/4 29 Nov 2009
I get the item entry id as follow: 1. Use IAddrBook::GetSearchPath get SRowSet. 2. Use PropFindProp check SRowSet for IABContainer PR_ENTRYID. 3. Use IAddrBook::OpenEntry open the entry id to get IABContainer. 4. Use IABContainer::GetContentsTable to get contact table. 5. Then i get wanted items in table and save their entry ids. Now i have the item entry id, if i want to remove the item,
Aditi0/5 26 Nov 2009
Hi All, I am developing a Outlook 2003 addin for sychronising the appointments with database.For this need to retrieve current CalendarView (mainly the starting ending dates).I have got CalendarView object in Outlook2007 and it was very helpful.But not getting any similar object in Outloo2003. Please help me or suggest me an alternative Thanks Aditi
Ken Slovak - [M...0/2 25 Nov 2009
Will a VSTO C# Outlook 2007 Add-in work on Outlook 2010 (without having to make any code/install changes)?
Aditi0/1 25 Nov 2009
Hi All, I am developing a Outlook 2003 addin for sychronising the appointments with database.For this need to retrieve current CalendarView (mainly the starting ending dates).I have got CalendarView object in Outlook2007 and it was very helpful.But not getting any similar object in Outloo2003. Please help me or suggest me an alternative Thanks Aditi
Dmitry Streblec...0/3 23 Nov 2009
Hello We are developing outlook addin which should work in outlook 2003 & 2007. We have few custom header fields in the mail & then based on these fields in mail header, mails are updated in the database or land up in inbox. NewMailEx event on inbox was used for this purpose. The issue with this event is that we loose few of the mails, the event doesn't get fired properly & the mail
Sue Mosher [MVP...0/2 22 Nov 2009
I need to add some controls below "Test Account Settings..." button, but i do not know how..
Dmitry Streblec...0/10 22 Nov 2009
I want to update the contact's info or create new contact with emailaddress1, emailaddress2 and emailaddress3. For new contact, i use IAddrBook:: CreateOneOff, it works great. But i don't know how to update the three emailaddress, for example: user can set the following combine for three emailaddresses. 1. None. No emailaddress will be set. 2. First only first emailaddress will be set.
SteveC0/1 21 Nov 2009
I have the Beta version of Outlook 2010 and the live mail connector, which is pretty neat. But I cannot find a way to get it to sync the folders. I lost my birthday and holiday calendars and wanted to redownload them. Any help? Thanks.
Dmitry Streblec...0/2 19 Nov 2009
I uninstalled a virus software and starting getting this error in Outlook. I have completed the following steps trying to get this problem corrected. 1. Open Outlook in Safe Mode and enabled and disabled on Add-In's 2. Defrag drive 3. Run Check Disk 4. Removed all entries in registry having to do with old virus software 5. Purchased and ran a registry cleaner 6. Uninstalled and
nitwalke@gmail....0/5 19 Nov 2009
Hi All, I have created outlook addin for outlook 2003 in vsto-2008. When I have tried to allow property 'allowDrag' to textbox it gives runtime exception "dragdrop registration did not succeed". I have searched on net, got suggestion to use threading. Thread t = new Thread(new ThreadStart(ShowForm)); t.SetApartmentState(ApartmentState.STA); t.Start(); public void ShowForm() {
nitwalke@gmail....0/1 19 Nov 2009
Hi All, I am developing an addin for outlook which will show the new form on inspector button click.That form itself is a new message.I want to add custom controls on that form and change its look according to user's need.I had tried to design Outlook form but didn't get how to remove menubar and toolbars. i)Can we remove menubar and toolbars from outlook form? ii)Can we set
Duncan McNiven0/2 17 Nov 2009
I am using Delphi (2009) to write my first add-in for Outlook (2007). I want to add a custom method to my add-in's class and call it from an Outlook macro, but I can't get it working. My method in my Delphi class is public. It looks like this: procedure MyMethod(const Index : integer); safecall; I tried to call it from Outlook like this: Sub Test_02() Application.COMAddIns.
Mark B0/1 16 Nov 2009
I have a form region under the preview email pane that has 1 combobox and a few images on. Currently when I GUI navigate and select different emails, the form region always shows the text of the combobox highlighted with quite a bright blue, being the screen highlight color. I'd like to see what it's like without this automatic selecting and highlighting in case the users think
Mark B0/1 12 Nov 2009
VSTO, 2007, C# Is there a way to get MyFormRegion to refresh (reload) from another class? It may be obvious but I'm relatively new to C# and VSTO. TIA
Liu Peng0/3 11 Nov 2009
I need a custom action which will be used in Rules Wizard "Perform a custom action", this custom action will send email's attachments to some other system. Is it possible to use VSTO to create this custom actions? If so please provide some reference resource. thanks.
Mark B0/6 11 Nov 2009
VSTO, 2007, C#. I'm going through the code of our senior developer to try and reduce the load-time of the Outlook Add-on. I see he is adding an event handler to all email items on ThisAddIn_Startup so he can detect when an email is read. (He uses this info for something else we need). It all works fine but I have noticed in testing it gets pretty slow as more emails are stored in
varun0/2 11 Nov 2009
Hi, I need to assign some default html string to the htmlbody property of the new mailItem that is being displayed inside an inspector. Even though I assign the property some value, it is not taking it as exactly what I assigned. It is getting all the default htmlbody and rendering the string that I used as HTMLBody property. I am writing an addin for Outlook2003 Can anyone help me
varun0/2 11 Nov 2009
outlook change the body of selected mail if we change body of forward mail. I have a sample application which i got from following site. http://www.codeproject.com/KB/COM/outlookaddin.aspx I attach the project on rapidshare, please get it from http://rapidshare.com/files/302193923/sample1.rar.html . In this application i register inspector event. When select a mail in outlook click on
Sue Mosher [MVP...0/2 10 Nov 2009
This is a multi-part message in MIME format. ------=_NextPart_000_000A_01CA62C3.D33C2740 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi: I want to insert some information to a property of a MailItem. I also = want that when people reply it, the information will still remain in the = replied mail item because I want to track the
Sue Mosher [MVP...0/2 10 Nov 2009
Hello everybody, I have a shared add-in written in C# that will store certain custom properties on a MailItem in the ItemSend event. I use the Redemption library to add the custom properties. My problem is that if the e-mail recipient is another user on the same exchange server then these custom properties are present on the MailItem in the recipients inbox. Is there anyway that
Dmitry Streblec...0/2 09 Nov 2009
As described in http://support.microsoft.com/kb/926443 it is possible to display tasks, reminders, and flagged items in the To-Do Bar if you use a .pst file in Outlook 2007. The question is, how to programmatically set this property? -- vema http://forums.slipstick.com