Follow us on X (Twitter)  Like us on Facebook  Connect with us on LinkedIn  Subscribe to our YouTube Channel  Subscribe to our WhatsApp Group

Outlook

Showing posts with label Outlook. Show all posts

You would like to build an application/addin that reads outlook mail and notify the user or would like to do some other operations based on your business need. For this, you will need to use the Microsoft Outlook APIs.

 

Today we are going to see, how this can be done using the Microsoft.Office.Interop.Outlook.dll to read the email from Outlook context and extract the data.

Published by on under .Net | C#

While working with Microsoft Office Interoperability, you may face the following exception that states: "COMException (0x80080005): Retrieving the COM class factory for component with CLSID failed due to the following error: 80080005".

 

This issue happens when Outlook is already running and you are trying to access it's mailbox from Visual Studio environment. Let's discuss more about the issue.

Published by on under Office | Outlook

Outlook 2016 brings a new set of features with the July update by which you can get someone's attention in the body of the email message or a meeting invite very easily. It will not only include their name highlighted in the body, but also add them to the “To” field.

 

This feature is currently available to Office Insiders and going to roll out soon. Let’s see brief about this new feature before it comes to public release.

Published by on under Office | Office 2016

If you are addin developer for any Microsoft product, you might have in need to find out the exact version no. of the office product. You can get it from the app version from the interop libraries, but that doesn't return the correct one to you.

 

So, how to retrieve it? Today in this small post, we will find out the way to get the correct version no. If you know any alternate way, will highly appreciate if you do share it with us.

Published by on under .Net | Office

Microsoft released a new update (Build 16.0.6965.2058) for Office 365 client aka. Office 2016 (Version 1605) on 14th June 2016. This includes one security fix and seven non-security related fixes. If you are using Office 2016, check for updates.

 

This post will cover the list of fixes part of this Microsoft Tuesday patch. Continue reading to further know about the changes.

Published by on under News | Office

When you are more used to with some application software and if you use it daily on a high volume, it's sometime good to learn the keyboard shortcuts of the features that you perform regularly. Outlook exposes a lot of such shortcut keys for you to perform better.

 

It's not always possible to learn all of them, but good to have the list to learn/view time to time. Here I am listing all the shortcuts of Outlook 2010 - 2016, for your reference.

Published by on under Office | Office 2013

Outlook has support to install add-ins from 3rd parties to extend the functionality or to do some additional works which outlook does not provide by default. But in some cases, it starts creating problem due to non-compatible version or bugs within the add-ins.

 

In such cases, if the outlook fails to start due to issues related to any installed add-ins, we need to boot outlook into safe mode to remove/disable those. Let’s continue learning, how to do this.

Published by on under Outlook | Outlook 2016

If you are using Outlook 2016 or any prior version of it and facing issue related to the first pane/left pane/folder pane/navigation panel/navpane, which is frequently disappearing after outlook restart, this post will help you to resolve it.

 

Just follow the simple steps mentioned here in this post and let us know, if this solves the problem that you are looking for.

Published by on under Office | Office 2016

Along with Windows 10 Mobile Insider Preview build 14283, Microsoft also released a new update for Outlook Mail and Calendar app, having some new improvements. Among those, one cool new enhancement is the ability to turn ON/OFF the message preview in the message pane.

 

Though it is by default set to ON, but in case you want to hide it or make it visible in future, this small post will help you to configure the same, step-by-step. Continue reading.

Published by on under Outlook | Tips

If you are using Outlook 2016 (version: 16.0.6568.2025) and configured the email client to download mails using POP3, you might face some issues which will delete all the emails from server inbox after outlook downloads those and/or create duplicate items of the downloaded messages.

 

Microsoft has shared an workaround to resolve this issue. If you are using that specific version of Outlook 2016, continue reading to know more details of the same and fix the issue temporarily while Microsoft is working on a permanent fix.

Published by on under News | Outlook

If you are running Microsoft Office 2010 and a regular user to it’s Outlook product, you might have recently observed that, many buttons, menus changed their state to disabled mode. If you are using any add-ins, those became disabled. This is because your Outlook switched into Safe Mode.

 

This is quite obvious and actual reason behind this is a little bit different. In this post, we will discuss more about the issue and a quick fix to resolve it. Continue reading.

Published by on under Office | Outlook

On various scenarios, especially when you are building and shipping Add-Ins for outlook, at the time of add-in installation you might want to check whether user has installed outlook on his system or not. Based on that, you might want to show a message to the user.

 

In this small blog post, we will learn what needs to be done using C# to find out whether outlook is installed or not. Continue reading to know about this coding tricks.

Published by on under CSharp | DZone

Outlook and other office applications provides an easy way to restart itself. Though there are no directly exposed APIs to restart it, but you can easily write code to do the same operation. Today in this small blog post, we are going to discuss on the code to be implemented.

 

Just three simple steps and your code is ready. C# Code has been shared at the end of the post. Let me know if you have any queries. Would be happy to help.

Published by on under .Net | CSharp

If you are building an outlook Add-In and looking for a code to programmatically search and highlight texts inside an email body, this post will help you to understand the steps with proper code snippet. Just you have to plugin to proper event based on your  business logic.

 

Continue reading to learn and implement the same in your Add-In and in case you are facing issues, drop a line and I will try to reply back as soon as possible.

Published by on under Office | Outlook