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
1 answer
Outlook VBA - Use IF AND function to change categories in sent mail
Program: Outlook 2010
VBA Skill: Novice
Question: Can I use an IF AND statement to change the Category.
I can get it to run if only Item.To or Item.SenderEmailAddress are selected, however I can't get it to run in an AND (I can even get it to run…

MrsAdmin
- 548
- 5
- 12
- 34
0
votes
2 answers
Cancel appointment and associated resources in Outlook when created using EWS Managed API
I am using the EWS Managed API to create appoitments on Exchange 2010.
Appointment appointment = new Appointment(exchangeService);
appointment.Subject = "Sample meeting";
appointment.Body = "Sample meeting body";
appointment.Start =…

Spawnrider
- 1,727
- 1
- 19
- 32
0
votes
1 answer
how to get Office.IRibbonControl value in outlook 2010 using c#?
i have developing outlook addin.i done to create a custom tab.it contains two buttons and i set a custom image successsfully.now my issue is i cant hide my button in my button click function.the ribbon and their button images are only load in ribbon…

Arjun babu
- 607
- 2
- 13
- 42
0
votes
1 answer
Override outlook.com esxMscNormal to have no margin?
I am working on an email signiture sent from outlook desktop 2010. The template is looking ok in most clients, but when testing against outlook.com it seems to be inserting paragraphs around table cell text with a class of esxMscNormal with a 19pt…

Modika
- 6,192
- 8
- 36
- 44
0
votes
1 answer
Outlook External Application/Service Start
Is there any way to have outlook start an external application or service based on an outlook calendar task, event, appointment? Also if so, is there a way to get it to pass parameters to it?

jlaverde
- 338
- 1
- 2
- 16
0
votes
1 answer
Outlook Add-In Get Recipient Count In Distribution Group
I'm writing an Add-In for Outlook 2010 that should get the total number of people the recieving the email.
I can get the email property fairly easily with the following code:
Dim mailItem As MailItem
mailItem =…

KyleMit
- 30,350
- 66
- 462
- 664
0
votes
1 answer
Read body of email with attachment using VBA in Outlook
I have some VBA that checks the subject of every message as soon as it hits my inbox, and submits certain emails' contents over http to a server for processing.
This works great for messages with no attachments, but fails if there is an attachment…

nightTrevors
- 639
- 4
- 11
- 24
0
votes
1 answer
Regex detect filename in Outlook Attachment
Trying to go two routes with this. The goal is to let someone attach a file and then on _ItemSend event to run a Regexp to detect certain strings in the filename and then to a Cancel=True or Cancel=False. I have the following code, but the basic…

user3078575
- 21
- 5
0
votes
1 answer
Best way to add multiple rooms in Outlook appointment programatically
I'm implementing an Outlook plugin and I need to create appointments by code, the appointments I want to model occur in rooms, rooms live in Outlook Exchange. How can I add various rooms to the appointment created by code, consider the following…

avenet
- 2,894
- 1
- 19
- 26
0
votes
1 answer
Responding to a read receipt request using EWS
I am writting something to auto process attachments parse them and do other types of things to them that are currently being done manually. My problem is when reading these emails they all require a response to a read receipt in outlook 2010. Most…

user2755680
- 85
- 11
0
votes
1 answer
Outlook Textbox Value update and not replace
I have used a custom form in Outlook as task management. I would like to ask how can resolve the following problem that i have.
When someone open new task i have a custom form with a To field to add the user and assign the task.
My problem is that…

ktzouv
- 35
- 2
- 8
0
votes
4 answers
reply with template in outlook 2010
As a continuous process to improve our customer service at our helpdesk I'm looking to integrate a functionality in our outlook so that we can reply to existing e-mails using outlook template's (.oft).
My search online mostly gave me results for…

ThomasSt
- 185
- 1
- 14
0
votes
1 answer
Event that fires after signature is added
I am writing an addin to change the signature of composed mails. I tried Private Sub inspectors_NewInspector. This does not work because at the time this is invoked the signature has not been added to the mail, but the mail Body is the mail Body of…

Max
- 744
- 1
- 7
- 19
0
votes
2 answers
Opening Custom Form Region from an Outlook COM AddIn Ribbon Button Click
How do I activate my custom class form region from a ribbon button click event? In essence, performing the same function as Outlook Home -> New Items -> Custom Forms -> My Form Name.
I’ve developed a COM AddIn presenting a form to the user. It WAS…

pschlosser
- 21
- 4
0
votes
3 answers
Save attachment then move email in outlook 2010
I'm new to VB and have been struggling to try and create a VBA macro that will automatically perform the following tasks upon email receival:
1) Checks to see if the email originated internally, or externally. (If external ignore)
2) Checks to see…

hermiod
- 1
- 1