RTM Demo VM for SharePoint & Office 2010

Getting the VM If you’re looking to get up to speed on SharePoint and Office 2010 development, but don’t necessarily want to install everything on the metal you can download the RTM Demo VM: http://www.microsoft.com/downloads/details.aspx?FamilyID=751fa0d1-356c-4002-9c60-d539896c66ce&displaylang=en The VM is good for 180 days, and you have a ton of RTM software to get you started. To use the VM: 1. Download the zipped files into a directory on your local machine and unzip them; 2

Here is the original:
RTM Demo VM for SharePoint & Office 2010

Manage large groups of controls by using the Tag property

Today’s guest blogger is Access MVP Garry Robinson, who offers the Smart Access collection of articles at http://www.vb123.com/kb . In Smart Access Answers , Doug Steele was asked “What if I have a number of different controls–say, text boxes, labels, and check boxes and I want to make them invisible or visible when a form is being used?

Excerpt from:
Manage large groups of controls by using the Tag property

What’s New for Developers in Outlook 2010

This article examines, in depth, some of the new and enhanced objects in the Outlook object model, including their properties, methods, and events.

Here is the original post:
What’s New for Developers in Outlook 2010

Shutdown Changes for Outlook 2010

As part of the goal to improve performance, Outlook 2007 Service Pack 2 and Outlook 2010 include some significant changes to ensure that Outlook shuts down properly when the user attempts to close it. This article describes the changes to Outlook 2010.

Originally posted here:
Shutdown Changes for Outlook 2010

Another Office Customization with Beta 1 – Excel Add-in with Custom Task Pane

I recently downloaded the Visual Studio 2010 Beta 1 and have been playing around with the different features for Office Business Application development. For the public Beta 1, you’ll be limited to the 2007-centric templates (e.g. Excel 2007 Add-in, Word 2007 Document, etc.), but the nice thing is that if you’re familiar with these templates when future Betas are released you’ll already have had a chance to get experience with the Beta 1

See the original post here: 
Another Office Customization with Beta 1 – Excel Add-in with Custom Task Pane

Office Development in Visual Studio 2010

Visual Studio 2010 Beta 1 samples demonstrate Office 2007 development projects, tools, and techniques. Samples include Excel, Word and Outlook solutions. Each sample is available in both Visual Basic and C#.

See the original post:
Office Development in Visual Studio 2010

6. VSTO Bug Tracker: Word Report Generation

Another thing I want my bug tracking system to do is help me generate a weekly report with a summary table of key stats for all my teams. I want to do this in Word so I can add my own comments and a status summary of what went on during the week. We already prepared to build this Word report by writing the Web Service method “GetDailyValues”.  Create a new Word document project in C# and call it BugDocument.

Here is the original post: 
6. VSTO Bug Tracker: Word Report Generation

3. VSTO Bug Tracker : A UDF

Now that we have our web service, lets get started by writing a managed UDF that uses the web method “GetColumnValue”.  In fact, the UDF will mirror this web method and make it so we can use it in Excel formulas. First, add a new C# or VB class library project to your solution using File > Add > New Project. Name the project BugAddIn

Original post:
3. VSTO Bug Tracker : A UDF

2. VSTO Bug Tracker : The Web Service

Within Microsoft, there is a web service already implemented that I can use in my solution to call the bug tracking system and get back the data described in the previous article.  For my demo, I’m going to implement a demo web service that will stand in for that internal Microsoft web service.  It will return the same basic data structures as the internal web service does, so when I run my own copy of VSTO bug tracker, I can swap out this demo web service for the real one. The demo web service will have three web methods.  The first method is called BulkDataExport.  This method takes a start date and an end date and returns back a dataset with all the bug data for that time period.  This is a simplified version of the Microsoft provided web service that I use internally.  That web method has more parameters to specify milestone, release, team, etc.   But I will omit those for simplicity since my data is specific to my team. <WebMethod()> _ Public Function BulkDataExport( ByVal dateFrom As String , _ ByVal dateTo As String ) As System.Data.DataSet [WebMethod()] public System.Data.DataSet BulkDataExport( string dateFrom, string dateTo) The second method is called to get one particular bug stat value for one particular date.  This will be used by the UDF I will write later.  This takes a particular team (milestone and release I omit) as well as the name of the column I want to retrieve (e.g.

More here: 
2. VSTO Bug Tracker : The Web Service

Excel Services Getting Started – Pt3 EWA

This continues my previous checklists here and here on getting started with Excel Services. In this post, I’ll append a walkthrough for using Excel Web Access. 5

Here is the original:
Excel Services Getting Started – Pt3 EWA