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
0
votes
1 answer

MailItem moved to wrong folder

I was trying to implement a script to move a specific mail to a new folder - no tough stuff. It is scripted in Outlook 2013 and implemented as a rule on incoming mails. The code: Public Sub MoveToFolder(Item As Outlook.MailItem) '' ... variable…
makciook
  • 1,537
  • 10
  • 19
0
votes
1 answer

Trigger VBA code to run after a new mail is received in Outlook?

Win 7, Outlook 2013 I use VBA code that takes an action on some of the files that arrive in my inbox. However, I have to click/run button to run this macro. Is there a way that this code could run automatically when an email arrives? I have tried an…
user2738649
  • 19
  • 1
  • 2
  • 5
0
votes
1 answer

RDOMail unable to change BodyFormat property

I couldn't change property BodyFormat of RDOMail object from plain text to html. I have the following code: RDOMail rdoMessage = rdoFolder.Items.Add("FooType"); rdoMessage.Subject = "Subject"; Also I'm adding some user properties here. The next…
ramil89
  • 851
  • 13
  • 22
0
votes
1 answer

Outlook AddIn: How can I call InvokeRequired?

In my Outlook 2013 VSTO AddIn, I have this code: Private Sub ThisAddIn_Startup(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Startup Task.Run(Sub() DoStuff()) End Sub Private Sub DoStuff() ' Do some long task stuff …
MojoDK
  • 4,410
  • 10
  • 42
  • 80
0
votes
3 answers

VB6 Compile Outlook add-in - Compile Error: Automation Type Not supported in Visual basic

I have got an infuriating problem trying to compile a VB6 Outlook Add-in component following an upgrade of Office on the same PC to Office 2013 Pro Plus. The error Compile Error: Automation type not supported in Visual Basic is being thrown on…
Mayb2Moro
  • 3
  • 1
  • 5
0
votes
1 answer

Creating a distribution list within CRM 2011

I am trying to find a efficient way for our users to email multiple contacts within CRM with a custom email (no templates) on demand. After playing around with it for a long time, I came up with the following: Create a custom view under "Contacts"…
mjhouseman
  • 164
  • 2
  • 18
0
votes
2 answers

Outlook 2013 creating a black border line to the right of each nested table

Please help, I'm at my wits end as I'm trying to make a responsive email, going from two columns to a single one, everything goes perfect until I reach Outlook2013, it adds a single black line to the right of each table that is aligned next to each…
user2083742
  • 1
  • 1
  • 1
0
votes
1 answer

Automatic email send/receive in Outlook

Is there a way to set up Outlook (2013) to automatically send/receive emails when it is activated? What you can do now is to intruct Outlook to periodically check the emails, and of course, it checks the emails at start time. That's fine, I am a…
Adi
  • 5,113
  • 6
  • 46
  • 59
-1
votes
1 answer

Default Folder change For Attach File in outlook 2013

My default folder to add / insert attachement (Attch File) Documents but i want to change it to Desktop So whenever i want to add / insert attacment (Attch File) in reply / new email it should go to Desktop by default insted Document.
-1
votes
1 answer

Did not get any event when dragging file on Outlook specific folder

I have created one add-in for outlook 2013. There is one "custom folder 1" on outlook. When I drag one file on desktop and drop it in "custom folder 1" folder, I did not get any event.
Pratik Ratanpara
  • 338
  • 2
  • 15
-1
votes
1 answer

How can I make a shared account in Exchange 2013 that let's me add new users to that account in Active Directory

I'm new to Active Directory and Exchange Server 2013. I'm looking for a way to simplify shared accounts in Exchange. At the moment, whenever we get a new user who wants access to a shared email account we have to manually add them in Exchange 2013.…
-1
votes
1 answer

office outlook rule : copy all messages except from a specific user

I am using Microsoft Office Outlook 2013 and I want to setup a rule to copy all messages which appears in inbox in a separate folder except a specific set of messages which are coming from a specific user. I am able to setup the rule but the except…
Koushik Chandra
  • 1,565
  • 12
  • 37
  • 73
-1
votes
2 answers

How to get the MailItems of a specific folder in Outlook

My folder is called "Request Mailbox" in Outlook How can I get a list of all mailitems in that folder
software is fun
  • 7,286
  • 18
  • 71
  • 129
-1
votes
1 answer

How to limit the emails to pulled in outlook

Im using Outlook 2013. Is there a way to limit the emails to be pulled in outlook? Its taking too long in synchronizing
san-san
  • 64
  • 8
-1
votes
1 answer

NavigationFolders.add() crashes Outlook for shared calendars?

Simple enough line here: Set navFol = navGroup.NavigationFolders.Add(cal) This works as expected for any local calendars, but it instantly crashes Outlook if "cal" is a shared calendar. Anyone know a workaround to move shared calendars around…
1 2 3
19
20