Sign In
VSTO and Anything Else I Can Think Of
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
C#
Code Camp
DASL
LINQ
Office
Office Interop API Extensions
Outlook
Power Tools
VSTO
Archive
Archives
December 2008
(2)
March 2008
(1)
February 2008
(7)
May 2007
(1)
MSDN Blogs
>
VSTO and Anything Else I Can Think Of
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
VSTO and Anything Else I Can Think Of
Finding DASL Property Names
Posted
over 4 years ago
by
Phil Hoff - MSFT
0
Comments
The LINQ-to-DASL provider of the Office Interop API Extensions provides a very limited set of mappings between its query types and their associated DASL properties. We didn't have the time to add them all and we didn't know which properties (besides...
VSTO and Anything Else I Can Think Of
Debugging LINQ-to-DASL Queries
Posted
over 4 years ago
by
Phil Hoff - MSFT
3
Comments
When your LINQ-to-DASL queries do not return the results you expect, how do you determine where the problem is? The issue could be that the query simply doesn't do what you expect. For example, you could be querying the wrong DASL properties...
VSTO and Anything Else I Can Think Of
Filter Outlook Items by Date with LINQ to DASL
Posted
over 4 years ago
by
Phil Hoff - MSFT
8
Comments
I received an email over the weekend asking why the following LINQ to DASL query threw an exception: Outlook. Folder folder = (Outlook. Folder )Application.Session.GetDefaultFolder(Outlook. OlDefaultFolders .olFolderCalendar); var appointments...
VSTO and Anything Else I Can Think Of
LINQ to DASL Walkthrough
Posted
over 4 years ago
by
Phil Hoff - MSFT
0
Comments
Now that the Office Interop API Extensions have been released , I thought I would post a complete walkthrough of a simple LINQ to DASL application. Let's start with my fictitious Outlook calendar: This calendar shows that I have four appointments...
VSTO and Anything Else I Can Think Of
Parameterized Properties and the Office Interop API Extensions
Posted
over 4 years ago
by
Phil Hoff - MSFT
0
Comments
One of the disadvantages of C# compared with VB is its lack of support for parameterized properties. Instead, parameterized properties in C# are exposed as normal method calls prefixed with "get_" and "set_". This is particularly apparent when working...
VSTO and Anything Else I Can Think Of
Office Interop API Extensions Now Available!
Posted
over 4 years ago
by
Phil Hoff - MSFT
13
Comments
As announced in Andrew Whitechapel's post , version 1.0 of the VSTO Power Tools have been released! One of those tools is the Office Interop API Extensions, a set of libraries which extend the Office object model to simplify development on the Office...
VSTO and Anything Else I Can Think Of
Extending LINQ to DASL with Custom DASL Properties
Posted
over 4 years ago
by
Phil Hoff - MSFT
4
Comments
In an earlier post I discussed LINQ to DASL, part of the Office Interop API Extensions, which is one of the forthcoming VSTO Power Tools. LINQ to DASL allows you to write LINQ expressions against Outlook item collections. I also mentioned that many known...
VSTO and Anything Else I Can Think Of
Using LINQ with the Office Object Model
Posted
over 4 years ago
by
Phil Hoff - MSFT
0
Comments
In my last post I talked about LINQ to DASL, a LINQ provider that converts query expressions into their DASL equivalent in order to efficiently filter item collections in Outlook. But LINQ to DASL solves only a very specific problem for one particular...
VSTO and Anything Else I Can Think Of
Query your Outlook Inbox with LINQ to DASL
Posted
over 4 years ago
by
Phil Hoff - MSFT
14
Comments
Quick, tell me what the following code does: Outlook. Folder folder = (Outlook. Folder ) this .Application.Session.GetDefaultFolder(Outlook. OlDefaultFolders .olFolderInbox); string subject = "VSTO" ; string filter = @"@SQL=(""urn:schemas...
VSTO and Anything Else I Can Think Of
Banish Missing.Value with the Office Interop API Extensions
Posted
over 4 years ago
by
Phil Hoff - MSFT
1
Comments
I like VSTO. I like C#. What I don't like is having to write VSTO code in C# like: object fileName = "Test.docx" ; object missing = System.Reflection. Missing .Value; doc.SaveAs( ref fileName, ref missing, ref missing, ref missing, ref missing...
VSTO and Anything Else I Can Think Of
VSTO at Portland Code Camp v3.0
Posted
over 5 years ago
by
Phil Hoff - MSFT
0
Comments
Yesterday I gave a presentation on VSTO at the third annual Portland Code Camp . I demonstrated an Outlook 2007 add-in that used Outlook Form Regions, WCF, and WPF to integrate Amazon.com Wish Lists with contact items. As my first public speaking event...
Page 1 of 1 (11 items)