Tagged Questions
Microsoft Outlook 2010 is the release of Microsoft's popular Outlook platform that debuted in July 2010. New features in this edition include ribbon interfaces in all views, a programmatically accessible Navigation Pane, and improved social networking features.
6
votes
2answers
604 views
How to programmatically get a contact's picture in Outlook 2010?
How can you get a contact's picture from Outlook and save it to a file?
Thanks!
4
votes
1answer
42 views
Outlook Add-in. Place a form instead message pane and reading pane
Can somebody tell me how to display a form in the area marked red, or at least how this area can be reached from my application.
Any help appreciated.
3
votes
1answer
580 views
In an add-in for Outlook 2010, how can I make a delete operation undo-able?
I am writing an add-in for Outlook 2010. At one point it needs to delete the Mail items currently selected by the user. I'm using the following code, which works quite well:
Selection ...
2
votes
0answers
71 views
ICallbackEventHandler & Outlook Web App
I'm trying to use a ICallbackEventHandler in a CustomForm in an OL 2010 Web App (OWA).
When I'm trying this MSDN example the website (standard ASP.NET) works without a problem.
However applying the ...
2
votes
1answer
115 views
VBA code to invoke “Clean Up Folder” in Outlook 2010?
Does anyone know the VBA code to invoke the "Clean Up Folder" Outlook 2010 command on the right-click menu when right-clicking on a folder?
I have gotten this far in VBA code to get to the folders I ...
2
votes
1answer
94 views
How to navigate programmatically in an Office 2010 addin?
Does anybody know if it is possible (and in that case how) to navigate programmatically in an Office 2010 addin?
The idea is to create a settings button on a ribbon tab, that when clicked, will ...
2
votes
2answers
150 views
Can an Outlook 2003 COM add-in written in VB6 be made to work with Outlook 2010?
I have inherited an Outlook 2003 COM add-in written using VB6 (note: NOT VB.NET).
I need to upgrade this to work with Outlook 2010. Is it possible to create an add-in for Outlook 2010 using VB6, or ...
2
votes
2answers
150 views
Adding tooltip to groupbox
After reading the descriptions of every property, I just can't find anything to define a tooltip in the groupbox class, or textbox or listview. Can I ask for a link to put me on the right track?
2
votes
0answers
119 views
Activating a function on a ribbon
I've created a ribbon for an add-in on Outlook 2010. The ribbon itself sits in its own class with a subset of functions and passes (Office.IRibbonUI)this.RibbonUI as a variable back to the main ...
2
votes
0answers
105 views
Customizing Business Contact Manager 2010?
Questions:
Is it possible to add an auto-increment field to a BCM form? I need to have an auto generated identifier for each Opportunity.
Is it possible to track emails on an Opportunity level? I'm ...
2
votes
0answers
234 views
Outlook 2010 disable/remove junk button [closed]
Is there a way that I can disable/remove the junk button from Outlook? We have an add-in that was installed that provides its own Junk button, but we don't want the users confused. The 3rd party ...
2
votes
1answer
232 views
How to develop addin for MS Outlook?
How do I develop addin for MS Outlook that works with all
1. Outlook 2010
2. Outlook 2007
3. Outlook 2003
I have developed addin that works well with 2010 and 2007 BUT NOT with 2003.
I want ...
2
votes
1answer
458 views
VSTO Outlook: Creating a dynamic custom context menu for a mail item determined by subject line
Is it possible to add different items to a mail item custom context menu by inspecting the contents of the item?
For instance, only add the item if the subject line contains "IMPORTANT".
2
votes
2answers
4k views
Adding a Tab to the Outlook 2010 Ribbon?
I'm trying to create an Outlook 2010 addin that adds a new tab to the ribbon. I found out how I can add my groups to an existing tab by setting the OfficeId to "TabMail" or something built-in, but I ...
1
vote
1answer
13 views
Outlook 2010 AddIn: Is there an event that fires *before* an item is added to a folder?
I'm writing an Outlook AddIn which is supposed to offer a new special folder which the user can drag mail items into, in order to have them processed by the AddIn.
Now I'd like to be informed ...
1
vote
4answers
47 views
How do I get MS Outlook to accept the CSS style display:block?
I am composing an HTML email using a service (MailChimp). The way that MailChimp marks up headings is to use a SPAN tag and gives the tag the inline style of display:block.
MS Outlook 2010 ignores ...
1
vote
1answer
12 views
How to identify “my” custom folder in an Outlook AddIn
I'm trying to develop an AddIn - or rather, just a proof-of-concept for now, to see if what I have in mind is actually even possible - for Outlook (2010, to be exact), in .NET/C# and I'm facing the ...
1
vote
2answers
33 views
How do I get the selected text from a WordEditor Object (in Outlook2010) and Copy it to another Form?
i want to Copy selected Text from WordEditor(Body of Outlook Email) to another Form when i searched i found that part of code to Copy to new Word Document by using ...
1
vote
3answers
49 views
Extending the User Interface in Outlook 2010
I am beginner and i wanted to Extend the User Interface in Outlook 2010
1-i just wanted to ask if any chance i can Extend that menu when i open Email and press
Right Click on the body menu i want to ...
1
vote
1answer
51 views
Set a MailItem as sent before calling SaveAs in Outlook Addin with C#
I am building an Outlook 2010 addin to integrate it with some business software and have trapped the ItemSend Event. I check if it is a MailItem and if it is I call the SaveAs function to save it as a ...
1
vote
1answer
20 views
Outlook Addin - Attach image in body from resource
I am currently developing an Outlook add in that automatically creates a signature in the body of a new email.
Currently it adds our company logo from a network share via HTML.
...
1
vote
1answer
29 views
Drag-and-Drop multiple Attached File From Outlook to C# Window Form
I Use following code for single file drag and drop.
private void FormRegion2_DragEnter_1(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{ ...
1
vote
0answers
110 views
Meeting invite with attachment not recognized in Outlook 2010 / Office 365
We have a .NET application that manually generates meeting invites to send to users. The process we use is as follows:
Create a System.Net.Mail.MailMessage and set the usual fields ...
1
vote
1answer
46 views
Is MAPI supported with Outlook 2010
I am trying to use MAPI to display a public calendar in SharePoint. The below sample code works perfectly with a machine having Outlook 2007 installed. But Outlook 2010 does not displays a big white ...
1
vote
1answer
64 views
How do I enable/disable my Ribbon Buttons in Outlook
I have an Outlook Add-in created with VSTO. Using the Ribbon Designer I have created a tab with three buttons on it. (Environment: Outlook 2010, .NET 4.0, VSTO latest runtime)
When one of the ...
1
vote
1answer
29 views
Toggling an Outlook FormRegion
I'm looking to create a FormRegion on a NewMailMessage item in Outlook 2010 whose visibility is toggled based on a control in a Ribbon. I've been banging my head for about 2 hours and haven't been ...
1
vote
3answers
88 views
VSTO Outlook addin need to save settings, best way?
I'm writing a VSTO Outlook add in and i need to save some settings the addin gets from a web service. What is the best way to do this. Registry? does the VSTO addin have full access to do something ...
1
vote
1answer
64 views
How to save a email to a PDF format?
I want to save all my emails into a PDF format. The file must contains which look similar to the Outlook Reading Pane into Outlook 2010.
Is there a programming way to to this (cause hundreds of ...
1
vote
1answer
84 views
Overriding Outlook's Default Sending function
Im developing a solution for Outlook with VSTO, VS 2010 and Outlook 2010.
I want to override default functionality of Outlook's sending behavior.
Here is the requirement.
When user clicks on Send ...
1
vote
2answers
130 views
Displaying Outlook Address book in Delphi XE app:
I have a Delphi XE app and I'd like to pop up the address book dialog that Outlook uses from within my Delphi app - I assume there are COM classes to support this? What's the best way to get this ...
1
vote
1answer
77 views
Disable suggested contacts in Outlook 2010
I need to disable the suggested contacts in outlook 2010 using a code that i can remote deploy to machines in the network.
Where/What is the setting to disable this feature?
EDIT: How do i do this ...
1
vote
1answer
57 views
Print attachment without opening
I have a user that want to be able to print multiple emails and the tiff attachments without opening the attachments (or the emails). I have been doing a lot of googling, but I haven't found ...
1
vote
0answers
98 views
Outlook 2010 addin Access is denied
Im trying to create an outlook 2010 addin. I just created the standard project, when trying to run it i get the following error...
Access is denied. (Exception from HRESULT: 0x80070005 ...
1
vote
1answer
67 views
How can I programatically tell what Outlook addins are installed, and if they are enabled or not?
How do I determine what Outlook COM or PIA addins are installed, and if they are enabled or not.
How can I get this information, and hopefully the file version as well?
1
vote
0answers
97 views
Install Outlook Extension in Thin Client OWA application
I have developed an extension for Outlook and currently have it installed on a thick client Outlook instance. I would like to enable the same extension for the thin client OWA application but can't ...
1
vote
4answers
861 views
Inconsistent spaces below TD elements in tables in HTML email in Outlook (2007 and 2010)
I've researched this problem, finding many suggested fixes on the web, but nothing is working.
The problem is the gap between a specific TD element in a table in an HTML email I'm designing. It's ...
1
vote
2answers
91 views
Outlook VBA troubleshooting
I have the following block of VBA code, which should create a popup box with the first name for each contact in my default folder.
Sub DeleteaContact()
Dim myOutlook As Outlook.Application
Dim ...
1
vote
2answers
161 views
How can I detect if an HTML email is being opened in Outlook 2007 or 2010?
I am currently trying to write a newsletter for the company I work for. The newsletter appears correctly in all major internet browsers (IE 5.55 to 9, Chrome, Firefox, Opera), but when anyone opens it ...
1
vote
3answers
457 views
CommandBars in outlook 2010
so I've noticed that CommandBars appear in tabAddIns in outlook 2010 by default. Is there any way I can get them to appear in my custom ribbon tab instead?
If it is impossible or very challenging, I ...
1
vote
1answer
3k views
Outlook 2010 custom VBA script to move incoming mail message to a specific folder
I'm trying to create a custom rule for Outlook 2010 that inspect the subject of the email and if it makes a regular expression it's moved into a specific folder.
However when I run the script I get ...
1
vote
1answer
147 views
.NET creating an email with attachments in Office 2010
I know with an mailto link you can open your defautl mail client and populate a subject and a title. I need to do something similar but also attach a document.
All my users will be using Outlook ...
1
vote
0answers
107 views
In outlook how do I add a user property to an occurrence of a recurring appointment?
Pretty much as the title says. I can add a UserProperties to non-recurring Appointments, but I need to add them to individual occurences in the series; I not sure if this can be done.
1
vote
1answer
379 views
How do I get the selected text from a WordEditor Object and change it's color?
I'm trying to use the WordEditor object to modify the color of the selected text (Outlook VBA) but i'm unable to find documentation or examples on how to do it. Any ideas?
I don't want to use the ...
1
vote
2answers
2k views
Getting/Creating an Outlook Application in Windows 7
I'm trying to get the current running version of Outlook or start up Outlook in case it is not running, but I am having some issues in getting or creating the Outlook Application object in Windows 7. ...
1
vote
0answers
222 views
Outlook Add-in targeting 2007 & 2010
I have an Outlook Add-in that I have developed for Outlook 2007. I am working on having this add-in work on Outlook 2010 as well. My add-in is an adjoining region on the appointment/meeting request ...
1
vote
0answers
343 views
Changing any Form Region/Ribbon property breaks Visual Studio editor
I have a problem with Visual Studio 2010 and Outlook Addin 2010 project (.NET 4 target). I've added a form region to my project and then I've changed Localizable property to true. Now if I close my ...
0
votes
0answers
25 views
How do I create a rule in Outlook 2010 than turns an email into a task?
I would like to take email messages that I get from my helpdesk system and automatically turn them into tasks in Outlook 2010. There's the "Quick Step" feature that has that command ("Create a task ...
0
votes
0answers
8 views
32-bit Powerbuilder application with mail concepts on 64-bit machine (win 7 OS + 64-bit Outlook)
I have a 32-bit powerbuilder application with mailsession object used for mailing.
Now i am trying to execute the same application on 64-bit machine (64-bit OS + 64-bit Outlook). I am unable to ...
0
votes
1answer
24 views
Replying using Templates (.oft) without losing the body of the original mail
I'm using Outlook 2010.
I have created a few templates (.oft) for answers that I use frequently.
When I am using a macro to answer using the templates, I loose the body of the mail I've just answered ...
0
votes
2answers
40 views
How do I integrate Outlook into my Java desktop application?
I want to integrate outlook in my desktop based java application. Can any one tell what are the solution for this. I have searched many items but they are paid service. is there any open source ...