Questions tagged [outlook-2013]

Microsoft Outlook is a personal information manager (most notably used for handling e-mail), available both as a separate application as well as a part of the Microsoft Office suite.

Although often used mainly as an e-mail application, it also includes a calendar, task manager, contact manager, note taking, journal, and web browsing. It can be used as a stand-alone application, or can work with Microsoft Exchange Server and Microsoft SharePoint Server for multiple users in an organization, such as shared mailboxes and calendars, Exchange public folders, SharePoint lists, and meeting schedules.

Features that debuted in Outlook 2013, which was released on January 29, 2013, include:

  • Attachment reminder
  • Exchange ActiveSync (EAS)
  • Add-in resiliency
  • Cached Exchange mode improvements
  • IMAP improvements
  • Outlook data file (.ost)
  • People hub
  • Startup performance improvements

References

297 questions
1
vote
1 answer

Outlook 2013 and newer - VSTO - is it possible place buttons here?

I am working on VSTO add-in for Outlook 2013 and newer and I can not find how to place my buttons to these three following places: Fig 1: When you right-click on Outlook. I would like to extend this list. Fig 2: When you minimize top ribbon you can…
Tom C.
  • 165
  • 1
  • 10
1
vote
1 answer

Mail Stuck in Outbox of Outlook 2013 sent using Redemption

Currently i am in a process of migrating applications to new version, i am facing a problem in the application. Basically its a VBA Access application which will send reports to users. For the mail delivery part it uses Redemption.dll Current…
DeadShot
  • 13
  • 2
1
vote
1 answer

Outlook Fails to Load Template Images

The following code: Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim sName As String Dim otlQuote As Outlook.MailItem If InStr(Item.Subject, "SOQ") <> 0 Then sName = Item.Body Set otlQuote =…
1
vote
1 answer

What version of Outlook 2013 supports ribbon bar buttons for Office Add-ins?

When was support for ribbon bar buttons added to Outlook 2013? I'm unable to find any documentation that points to a proper version number. I've found this link for "Adds support for Web Add-in commands to Outlook 2013.":…
1
vote
1 answer

"Subscript out of range" - break mode works fine

Like the title says, I'm getting a subscript out of range error in my code...but the odd part is that when I enter break mode to debug the error never triggers. To troubleshoot, I added a breakpoint lower in the code until I received the error. I…
1
vote
1 answer

Excel 2013 Outlook Recipient Resolve fails

I have the following code that worked fine in Excel 2007 but fails in Excel 2013. Dim lappOutlook As Outlook.Application Dim lappNamespace As Outlook.Namespace Dim lappRecipient As Outlook.RECIPIENT Set lappOutlook =…
1
vote
1 answer

Search Mailboxes in an Outlook Account using ExchangeService C#

I have an Office Outlook account with many additional Mailboxes. Programmatically we need to read/download emails from each of those Mailboxes. I tried the below code service.Url = new Uri(url); service.Credentials = new…
Cloud9
  • 11
  • 4
1
vote
2 answers

How to configure UTF-8 encoding on incoming emails in MS Outlook?

I checked the MS Outlook (office 365, 2013 and 2010) for options to configure UTF-8 character encoding. I found the options for out going email in: File > Options > Advanced > International Options. BUT I am not able to find the option to configure…
IAmMilinPatel
  • 413
  • 1
  • 11
  • 19
1
vote
2 answers

href tag not working in Outlook 2013

For the life of me I do not understand why my href tags aren't working in outlook 2013. I have other anchor tags that are written the same way in the same html file. it seems that the href tags are stripped out altogether. They work in all other…
Moe-Joe
  • 1,012
  • 3
  • 15
  • 27
1
vote
2 answers

Mark items as read when deleted/moved to trash

In Outlook 2010, using the code below, anything I delete or move into the trash folder is automatically marked as read. Option Explicit Dim WithEvents DeletedItems As Outlook.Items Private Sub Application_Startup() Set DeletedItems =…
Ben S.
  • 25
  • 8
1
vote
1 answer

open/execute Outlook's Custom flag dialog popup with VBA

Within Outlook 2013, if you want to add a custom flag to an item you get this dialog: I am trying to figure out how to open this dialog using VBA? I can either open it for a selected e-mail item or if there is a way to open it directly and retrieve…
IMTheNachoMan
  • 5,343
  • 5
  • 40
  • 89
1
vote
0 answers

Why Doesn't Outlook 2013 Show the Cellspacing?

I've tried everything I can think of, but I cannot get the whitespace between cells to show in Outlook 2013. This is being sent from NationBuilder. How do I add cellspacing so that it renders in Outlook? Thank you!
Adam Schwartz
  • 61
  • 1
  • 10
1
vote
1 answer

How to mark mail item as read?

I'm working on an App to save attached files in unread Outlook mail. After that I want to mark the mail as read so it won't run on the same mails. The mail is still marked as unread. I wrote it like this: try { foreach…
SapirA
  • 23
  • 1
  • 5
1
vote
1 answer

Ole Attachment IStorage format specifications

I'm trying to understand the format and specifications of Outlook Ole Attachments at the compound file level of things, the Ole Attachment in hand is a Picture (Device Independent Bitmap), I produced the Msg file by composing RTF text email with…
RaniDevpr
  • 410
  • 2
  • 13
1
vote
1 answer

Outlook 2013 customization and integration in exchange online

I want to customize the appointment window used in Outlook. I want add few custom fields. I am using VSTO (VS2013) to develop this addin. So far I have added a button in ribbon of appointment tab. On click of which I am opening a new form with…
devson
  • 990
  • 8
  • 22