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.
Questions tagged [outlook-2010]
949 questions
0
votes
2 answers
Outlook 2010 putting 1 pixel horizontal space between images in HTML email
I'm having a massive issue with something seemingly simple. I have a HTML email that I am creating. There is a section containing a row of images, some of them with links. Outlook keeps putting a single pixel horizontal space between the first image…

Sc0ttyD
- 1,576
- 1
- 14
- 22
0
votes
1 answer
Outlook 2010 VBA - Add sender to contacts when i click on a mail
got a little problem, I hope someone can help me.
(Outlook 2010 VBA)
this is my current code, what i need is when i click on a mail (only the mail i clicked on, not every mail in the folder/same place)
it has to check if the Sender of the mail is…

Ricje20
- 3
- 6
0
votes
1 answer
outlook download email body
I am creating a program that sends a text message and then depending on the reply I want to perform a specific action. Anyways here is my code:
using Microsoft.Office.Interop.Outlook;
using Outlook = Microsoft.Office.Interop.Outlook;
static void…

Tono Nam
- 34,064
- 78
- 298
- 470
0
votes
1 answer
Outlook HTML signature with external text
The company I work for has implemented new signatures to be used with Outlook 2010. Our company is also present at many exhibitions a year, and we would like to let our clients know just that.
The problem is that I want to load an external text file…

Hotfix
- 33
- 1
- 4
0
votes
1 answer
Retrieving explorer window object in Outlook Ribbon extension on startup?
I am having problems attempting to retrieve the default inbox folder because I have no instance to retrieve it from.
Ultimately, I'm attempting to retrieve a list of mail items that are one year or more old, such that I can display these mails in a…

Magnum
- 1,555
- 4
- 18
- 39
0
votes
1 answer
Email addresses in body of MS Outlook
In MS Outlook, if I type the following in the BODY of the email
me@you.com outlook will assume this is an email address and put a mailto: around it
but if I type
that'sMyDog@you.com outlook will treat this as text. Is there a setting in…
user1408685
0
votes
2 answers
Persisting VBA/VBScript macro settings
I've created an Outlook (2010) VBScript macro that has some user-configurable settings. I've googled and checked the likely resources and can't figure out a good way to persist them. I'm currently storing them in the body of a mail item! It don't…

jaskho
- 122
- 5
0
votes
1 answer
How can I be notified of responses to a .ics file attached to an email?
If I attach an iCalendar file to an email, not a meeting or appointment but as an email with an attachment, is there any way I can be notified of responses/acceptances?

James Lee
- 45
- 2
- 7
0
votes
1 answer
Custom Ribbon in Outlook VSTO goes 'missing' if not in VSTO project's root?
I have a bare bones VSTO Outlook Add-in. I've added an empty Ribbon via this article and it works.
The Ribbon.cs and the Ribbon.xml files currently reside in my project's root but if I move them to a sub folder (say AddIn\Ribbon) there are no…

E.Beach
- 1,829
- 2
- 22
- 34
0
votes
1 answer
Prevent editing appointments and tasks in outlook
Is it possible to prevent a user from editing appointments and tasks in Outlook. The tasks and appointments are synchronized using an addin we are developing.
We want to make a first release, but we have to prevent the user from editing the items,…

Marco
- 4,817
- 5
- 34
- 75
0
votes
2 answers
How to get From field from Outlook using vba macro
I am writing macro that will set a signature after choosing the From field or for example clicking reply. My problem is that I don't know how to get the From field value. I know how to set this field.
Function GetBoiler(ByVal sFile As String) As…

erni
- 83
- 1
- 4
- 12
0
votes
1 answer
MS Outlook 2007 ~ VBA to apply a rule to text in Attachment
Is it possible (via VBA or other method) to apply a rule (eg. 'Move Email to Folder X') to an email based just on text in an attachment on that email.
I receive emails with XML attachments manually open them to find a specific date inside. I then…

Marcus C
- 169
- 1
- 2
- 13
0
votes
1 answer
how to get embed image from current outlook email with c#?
I am developing outlook 2010 add-in with c#.net in visual studio 2010.
I want to get embed image from current email ( not attached) in to my form region.
how to get embed image from outlook email ?
I tried to find out from google but all of them…

Mausami
- 692
- 1
- 13
- 24
0
votes
1 answer
Event bindings not always happening during Outlook add-in startup
I'm developing my first Outlook 2010 add-in using C# and Visual Studio 2010. Thus far my project is going nicely. I have a custom tab in the ribbon, and it updates every time a new message is selected in the outlook window. Text from the email is…

Ben Brandt
- 2,851
- 5
- 34
- 45
0
votes
2 answers
Can't remove contacts from an address book in Outlook 2010
I can add a contact to a address book but for some reason I can't remove it. The code I'm executing is as follows.
String abName = "Name ofthe targetted address book";
Outlook.Folder addressBook;
if…
user1675891