Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Search
Archives
Archives
May 2013
(3)
April 2013
(4)
March 2013
(3)
February 2013
(3)
January 2013
(3)
December 2012
(10)
August 2012
(2)
July 2012
(1)
June 2012
(20)
May 2012
(5)
April 2012
(7)
March 2012
(2)
February 2012
(8)
January 2012
(3)
December 2011
(5)
November 2011
(2)
October 2011
(1)
August 2011
(4)
July 2011
(6)
June 2011
(6)
May 2011
(1)
April 2011
(4)
March 2011
(3)
February 2011
(5)
January 2011
(1)
December 2010
(14)
November 2010
(27)
October 2010
(22)
September 2010
(15)
July 2010
(1)
June 2010
(6)
May 2010
(5)
April 2010
(16)
March 2010
(4)
February 2010
(3)
January 2010
(16)
December 2009
(10)
November 2009
(3)
October 2009
(10)
September 2009
(20)
August 2009
(5)
July 2009
(13)
June 2009
(9)
May 2009
(5)
April 2009
(7)
March 2009
(1)
February 2009
(20)
January 2009
(12)
December 2008
(25)
November 2008
(12)
October 2008
(35)
September 2008
(9)
August 2008
(17)
July 2008
(21)
June 2008
(6)
May 2008
(36)
April 2008
(10)
February 2008
(26)
January 2008
(29)
December 2007
(8)
November 2007
(31)
October 2007
(4)
Tags
Code Snippets
Developer
developers
development
DevMSGTeam
Download
Exchange
Exchange Server
Exchange Server 2003
Exchange Server 2007
Exchange Server 2010
Exchange Web Services (EWS)
General
How to
KB
Outlook
Outlook 2003
Outlook 2007
Outlook 2010
Outlook Programming
Outlook UI
Programming
Troubleshooting
Tutorials
What is New ?
Common Tasks
Blog Home
Email Blog Author
About
RSS for posts
RSS for comments
Tagged Content List
Blog Post:
Office Developer: How to programmatically restrict or filter “To” property using Outlook Object Model?
Deva [MSFT]
In this post, we will see how to programmatically filter/restrict items “To” property. Let we take this scenario. In Outlook, we notice it contains 6 items “To” property containing “Deva G”: Note:In specifying a filter in a Jet or DASL query, if you use a pair of single quotes to delimit...
on
9 Apr 2013
Blog Post:
Outlook : How to regenerate free/busy information using MFC MAPI?
Deva [MSFT]
Recently one of my customer reported that Outlook is not showing latest free/busy information for selected users. Initially they tried the following steps for the affected users: Exit Outlook Open Command prompt > Open Outlook with cleanfreebusy switch (outlook.exe /cleanfreebusy) It failed to resolve...
on
7 Jan 2013
Blog Post:
MAPI Developer: API elements deprecated in Outlook 2013
Deva [MSFT]
Are you an MAPI developer? Then, this article is targetted for you. The API elements (like, IXPLogon::RegisterOptions, OPTIONDATA, OPTIONCALLBACK, IMAPISession::MessageOptions, IMAPISession::QueryDefaultMessageOpt, IAddrBook::RecipOptions, IAddrBook::QueryDefaultRecipOpt) are deprecated in Microsoft...
on
26 Dec 2012
Blog Post:
Office Developer : Outlook & VBA Programming # 2
Deva [MSFT]
In addition to previous article, I would suggest you to have a look at the related articles for reference/samples etc: Microsoft Office Outlook 2003 Inside Out 101 VBA samples for Office 2010 VBA for Office developers Office 2003 Editions: Outlook VBA Language Reference Automating Outlook from a Visual...
on
24 Dec 2012
Blog Post:
Office Developer : Outlook & VBA Programming # 1
Deva [MSFT]
By using Visual Basic for Applications (VBA), a simple but powerful programming language that you can use to extend Office 2010 applications with new capabilities and automate repeated tasks. I remember VBA is used for a long time in Microsoft Office based applications. I thought to combine the list...
on
24 Dec 2012
Blog Post:
Is it possible to download Offline address book via Outlook Object Model API?
Deva [MSFT]
This is one common question from our customers - whether they can programmatically download an Offline address book through the Outlook Object Model or not. The answer is “No”. Offline address book downloads are not exposed through the Outlook object model.
on
2 Aug 2012
Blog Post:
Troubleshooting: Outlook Social Connector Provider error codes
Deva [MSFT]
Outlook Social Connector providers should return errors to the caller. Please note that Success, warning, and error values are returned by using a 32-bit number that is called a result handle, or HRESULT. An HRESULT is not a handle to anything; it is merely a 32-bit value that has several fields encoded...
on
12 Jun 2012
Blog Post:
Outlook 2010 Developer Series: Developing a Real Outlook Social Connector Provider
Deva [MSFT]
The Outlook Social Connector is a set of new features to help keep track of your friends and colleagues while enabling you to grow your professional network. The Outlook Social Connector is available now as part of the Microsoft Office 2010. The Outlook Social Connector (OSC) brings social views of your...
on
11 Jun 2012
Blog Post:
Outlook Object Model: How to include usemap attribute programmatically?
Deva [MSFT]
In this post, I will show you how to make use of usemap attribute of img HTML element in HTML emails programmatically. For this, I used Outlook 2010 VBA & Outlook Object Model. You can design the application with C# or VB.Net with Outlook Object Model library as per your wish. We will do this exercise...
on
27 Apr 2012
Blog Post:
Outlook Object Model: How to assign a Webpage to a specific Outlook folder programmatically?
Deva [MSFT]
In this post we will see how to assign a web page to a specific Outlook folder programmatically using C# and Outlook Object Model. For this I tried the following sample, which checks for a folder named “HtmlView” in Microsoft Office Outlook. If the folder does not exist, the code creates the folder and...
on
10 Apr 2012
Blog Post:
Differences: Outlook Object Model vs Pocket Outlook Object Model
Deva [MSFT]
Recently one of my developer customer (developer of PC and mobile based applications) was asking is there any difference available between Outlook Object Model (OOM) API and Pocket Outlook Object Model (POOM) API? If yes, where it's documented? As you know, the Pocket Outlook Object Model (POOM) API...
on
4 Feb 2012
Blog Post:
Outlook 2010: Migrating CDO based application to Outlook Object Model(OOM) library
Deva [MSFT]
Recently one of my developer customer migrated from Outlook 2003 to 2010. He tried running the custom application (uses CDO & Outlook 2003) in Outlook 2010. It throws the error “ActiveX component can’t create object”. Using the following test sample, I can reproduce the exact issue at my end...
on
6 Dec 2011
Blog Post:
Outlook Object Model 2010: Programmatically check whether the search is synchronous or not?
Deva [MSFT]
In Outlook 2010, you have a way to check whether the search is synchronous or asynchronous or not. Just created a small code snippet (below) for the reference – you can notice that I just call the application.IsSearchSynchronous() and pass the look in folder which want to try. The path name of the folders...
on
24 Nov 2011
Blog Post:
Outlook 2007: How to ‘quickly’ disable add-ins?
Deva [MSFT]
Try the following steps to disable add-ins in Outlook 2007 (it also applies to InfoPath 2007, Project 2007 and Visio 2007) On the Tools menu, click Trust Center. In the categories pane, click Macro Security. In the details pane, select No Warnings and Disable All Macros or Warnings for signed macros;...
on
4 Aug 2011
Blog Post:
Outlook Programming: How to retrieve unread messages from any Outlook folder?
Deva [MSFT]
Recently one of my customer updated that he got a requirement to programmatically retrieve unread messages from any Outlook folder to be implemented part of his application. We tried the following steps - Will show you how you can programmatically retrieve unread messages from any Outlook folder...
on
3 Aug 2011
Blog Post:
Why using Custom Outlook forms and HTTP scenarios not recommended?
Deva [MSFT]
In Outlook, custom Outlook forms are not supported for use with HTTP-based mail services (such as Microsoft Hotmail). Outlook does not prevent you from using custom form features if you are using an HTTP-based mail service. However, some features do not work correctly. The features do not work correctly...
on
13 Dec 2010
Blog Post:
Development : Threading with Outlook Object Model?
Deva [MSFT]
Developers do complain when they use multi-threading the Outlook Object Model (OOM) API, it fails or hangs inside and outside of Outlook? The reason behind this is the Outlook Object Model is not thread safe which means that COM will never allow multiple threads to enter concurrently. Instead...
on
12 Oct 2010
Blog Post:
Outlook Object Model: Handling mailbox items - read or unread - from any folder
Deva [MSFT]
Being Exchange/Office developer, you make use of Outlook Object Model (OOM) API to can handle the mailbox items programmatically and process as per your wish. Let me walkthrough through this sample: 'Declaration block Dim iOut As Outlook.Application Dim iNs As Outlook.NameSpace Dim iFldr As Outlook...
on
4 Oct 2010
Blog Post:
Coding practices : Outlook automation using VB.Net
Deva [MSFT]
You can try when you do programming with VB.Net and Outlook automation: When you start automation code by declaring object variables with a specific object type that represents the top-level object and then declaring any child objects you want to reference. Dim olApp As Outlook.Application ...
on
4 Mar 2010
Blog Post:
Download : Outlook 2010 - Developer reference
Deva [MSFT]
If you’re the Office/Messaging developer and use Outlook 2010 beta for developing applications, then this article is for you. Microsoft published Outlook 2010 – Developer reference . These developer references are in HxS format, as opposed to CHM format. It also contain related information about the...
on
25 Jan 2010
Blog Post:
Outlook Object Model changes : Outlook 2010 Object Model and its Earlier Versions?
Deva [MSFT]
With respect to my previous blog post , i want to add more information regarding the Outlook Object Model changes. Being Messaging developer, it’s a must for us to understand and keep in-track, Outlook 2010 Object Model changes available since earlier versions. I request you to refer the MSDN article...
on
25 Jan 2010
Blog Post:
Where i can find the Macros & Visual Basic Editor in new Microsoft Outlook 2010?
Deva [MSFT]
Couple of Outlook 2010 beta users reported that they can’t find the old VBA (Visual Basic for Applications) and Visual Basic Editor in new Outlook 2010? Whether the feature is removed? With respect to my last blog post , VBA is available with Outlook 2010. Let me explain in-detail. We know about how...
on
25 Jan 2010
Blog Post:
Developer : Does Exchange Client Extension (ECE) deprecation matters me?
Deva [MSFT]
Per Randy’s blog post , Exchange Client Extension (ECEs) deprecation does (for Outlook 2010) matters the developers. For more information please refer the excerpts of the blog post: “For most Outlook users, this announcement will not concern you. However, if you are a developer that uses Exchange Client...
on
20 Jan 2010
Blog Post:
Outlook 2010 : Why CDO 1.2.1 not supported with Outlook 2010?
Deva [MSFT]
Collaboration Data Objects (CDO) 1.2.1 is a client library that provides a thin wrapper over Extended MAPI functionality. CDO does not install with Outlook 2010, and is available only as a download. For more information, see Collaboration Data Objects, version 1.2.1 in the Microsoft Download Center....
on
19 Jan 2010
Blog Post:
Outlook 2010 : Outlook Object Model enhancements & Changes
Deva [MSFT]
Outlook Object Model Changes Per Randy’s reference , the Outlook object model has new objects, properties, methods, and events that support new Outlook 2010 features programmatically. Other improvements to the object model address frequent developer requests for specific changes to the Outlook platform...
on
19 Jan 2010
Page 1 of 3 (74 items)
1
2
3