Learn how to develop on SharePoint

I’d have to say that my weakest area of development is probably SharePoint.  I know how to build a basic SharePoint web part and that’s about it.  I’m pretty much a dunce when it comes to SharePoint.  One of the things I’ve been telling myself for the last couple years is that I need to bite the bullet and "get smart" on SharePoint development.  For the first time in a long time, I have some down time so I am going to try to block of some time in the coming weeks to do so.  Where to start?  Paul Andrew blogged about a series of 10 MSDN webcasts covering SharePoint for .NET Developers.  All of the webcasts were recorded:

Web Parts

Data Lists

Silverlight

Event Handlers

Page Branding

Workflow

Web Services

Page Navigation

User Management

Content Types

There is also a fairly new resource for SharePoint development at http://MSSharePointDeveloper.com.  These resources are where I am going to start!

Technorati Tags: ,

WEBCAST RECORDING: Adding Mapping Capabilities to your Applications with Virtual Earth and ASP.NET AJAX

First, let me apologize since I promised to make this recording available almost two months ago.  I was trying to get the recording uploaded to the same Live Meeting servers as my other webcasts.  Needless to say, I had some challenges.  I decided to upload it to Silverlight Streaming.  I had to split the presentation into two files since this is a 90 minute presentation and Silverlight Streaming has file size limits.

In this presentation, I show you the fundamentals of the Virtual Earth Map Control 6.1 using JavaScript.  Then, I show how you can use ASP.NET AJAX and the Windows Communication Foundation (WCF) to make building Virtual Earth solutions easier.  Finally, I show you how you can host Virtual Earth in a desktop application.

Part I:

[Double click the video to view full screen]

http://silverlight.services.live.com/invoke/21188/ve6.1webcast_part1/iframe.html

Click here to download Part I wmv

Part II:

[Double click the video to view full screen]

http://silverlight.services.live.com/invoke/21188/ve6.1webcast_part2/iframe.html

Click here to download Part II wmv

So what’s the benefit of this recording?  First, it is much higher quality than the Live Meeting recording since I used Camtasia Studio.  Second, the content is updated to use the Virtual Earth Map Control 6.1 and the Virtual Earth JavaScript Intellisense Helper.  Finally, since it’s hosted using Silverlight Streaming, you don’t have to register to view it. 

Here are some download links for the webcast:

Deck: http://cid-1f72da7294089597.skydrive.live.com/embedrow.aspx/Public/Virtual%20Earth/marcscVEProgramming.pptx

Code: http://cid-1f72da7294089597.skydrive.live.com/embedrow.aspx/Public/Virtual%20Earth/VEMapControlDemo|_v6.1|_VS2008.zip

The sample demonstrating hosting Virtual Earth in a Windows Presentation Foundation (WPF) is old.  I have an updated sample.  Details about the updated sample are available at http://blogs.msdn.com/devkeydet/archive/2008/06/24/wpf-and-virtual-earth-revisited.aspx.  You can also watch a screencast about the updated sample at https://channel9.msdn.com/posts/keydet/Using-Virtual-Earth-in-a-WPF-Application/

Technorati Tags: ,,,,

Installing SQL Server 2008 RC0 & Visual Studio 2008 SP1 Beta on the same machine

I’ve been having some issues getting my VPC updated to SQL Server 2008 RC0 and Visual Studio 2008 SP1 Beta so I can record a couple screencasts on using Virtual Earth with SQL Server 2008.  I swear I read through the readme docs:).  However, I could not get Visual Studio 2008 SP1 to install.  I’m in the process of building a new VPC.  I probably should have done this in the first place since my original VPC had so much beta software installed (including the SQL Server 2008 Feb CTP).  Before I tried to install either, I decided review the readme again and do some basic Internet searching before I started.  Turns out I should have searched around the first time.  There is a known issue related to the order in which you install the two.  I found the following entry in the forums:

http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=3523799&SiteID=1

which states:

"SQL Server Compact installation fails when the products are installed in the following order:
1. Install SQL Server 2008 RC0
2. Then install Visual Studio 2008 SP1 Beta

The workaround for the issue is as given below:
1. Install SQL Server 2008 RC0
2. Go to the Add/Remove Programs
3. Uninstall SQL Server Compact 3.5 SP1 Query Tools Beta and SQL Server Compact 3.5 SP1 Beta
4. Install Visual Studio 2008 SP1 Beta
5. Install SQL Server Compact 3.5 SP1 Query Tools Beta (SSCESqlWbTools.msi) from the folder – ServersSetup on the SQL Server 2008 RC0 installation media (CD/DVD/Layout)
6. Go to the Add/remove programs and verify that the following are installed:

a. SQL Server Compact 3.5 SP1 Query Tools Beta;

b. SQL Server Compact 3.5 SP1 Beta;

c. SQL Server Compact 3.5 SP1 Design Tools Beta

The reason for the failure is that SQL Server 2008 RC0 and Visual Studio 2008 SP1 Beta install the same version of SQL Server Compact 3.5 SP1 Beta MSI’s. If SQL Server Compact is already installed on the machine SQL Server 2008 or Visual Studio 2008 SP1 Setup has to skip the installation. There was a bug in the Visual Studio Setup and it has been fixed. The fix will be available in the released version of Visual Studio 2008 SP1"

Hopefully this saves some headaches for anyone who is trying to install both on the same machine.

Behind the Maps – The Technology of Virtual Earth

I talk to people about programming with Virtual Earth quite often.  Beyond the developer APIs, my Virtual Earth knowledge somewhat limited.  I get asked all sorts of interesting questions about the technology behind Virtual Earth.  My answer is usually "Good question, I don’t know."  If you are one of those people that love know about all the nuts and bolts, then you are going to love Mark Brown’s new "Behind the Maps" series.   The first in the series covers the UltraCam.  Check it out here.

Technorati Tags:

Virtual Earth Wrapper for Silverlight (VIEWS)

At MIX 08, Chris Pendleton announced that the Virtual Earth team is working on a Silverlight 2 control.  The idea of being able to use managed code instead of JavaScript to build your Virtual Earth applications is very appealing to many.  I know many people are eagerly awaiting the Silverlight 2 control from the Virtual Earth team.  No, I don’t have any news on when that control will be out, but I do have some good news.  There is an interim solution for those of you dying to write some managed code in the browser instead of JavaScript.  Adam Eversole, from Microsoft Research, built VIEWS precisely for this scenario.  VIEWS was originally a internal-only project at Microsoft.  When Adam shared his work, he immediately received a number of requests to make it public.  I am happy to report that Adam was gracious enough to share the love!  I worked with Adam, John Pelak, and Jared Bienz to get this out to the world.  The real credit goes to Jared though.  He did all the work of getting VIEWS ready for public consumption.  So what are you waiting for?  Hop on over to http://www.codeplex.com/views to get your hands on VIEWS.  Jared also recorded a Channel 9 screencast at https://channel9.msdn.com/posts/jbienz/Virtual-Earth-Mapping-in-Silverlight-with-VIEWS/ that gives you a quick intro.

Technorati Tags: ,

WPF and Virtual Earth revisited

I’ve been pretty quite on the blogging front lately.  Every once in a while, I get the opportunity to work on something a little meatier than writing demo code.  Almost all of my time over the last month or so has been spent working on a couple such opportunities.  During this time, I worked on a more creative/reusable approach to hosting Virtual Earth in a WPF application.  If you have looked at any of my previous samples showing how to host Virtual Earth in a WPF app, you’ll recall I was using the WinForms WebBrowser control to host an html page that in turn hosts Virtual Earth.  Additionally, I used the WebBrowser control’s ability to enable communication between managed code and JavaScript.  One of the frustrations with this approach is that when using WinForms interop, all WinForms controls take the highest z-order in your app which means you cannot render WPF elements on top of the map.  The other thing that has always bothered me about my sample is although it showed how to implement the general approach, it did not wrap all the functionality into a reusable WPF Virtual Earth control.  Good news!  I have an updated sample.

I created the beginnings of a WPF Virtual Earth control.  That’s right, one you can just reference, add to your XAML, and start programming against without having to know the dirty underbelly of how it is implemented.

image

image

You simply use your .NET language of choice to program against the control’s API like you would with any other WPF control.  No need for JavaScript.

The control is a WPF wrapper around the Virtual Earth Map Control 6.1.  In the interest of time, I mirrored the the Virtual Earth Map Control 6.1 API.  However, there are a few deviations.  The control really should, but doesn’t, follow .NET coding and naming conventions.  For the most part, it mirrors the JavaScript API.  The control is far from perfect and it is currently only a subset of the JavaScript API.  I implemented the subset of API I needed for the work I was doing.  Having said that, I think I have created a decent foundation that could be built upon to have a full WPF wrapper around the Virtual Earth Map Control 6.1.

I decided to use the new WPF WebBrowser control that is in the .NET Framework 3.5 SP1.  The WPF WebBrowser control is similar to the WinForms WebBrowser.  The WPF WebBrowser control has the same z-order as it’s WinForms counterpart, but it eliminates the need for WinForms interop. 

The WPF map control allows you to create WPF UserControls and have them appear on top of the map:

,image

In the picture above, the InfoBox, which is the term Virtual Earth uses for the UI that pops up when you hover over a pushpin, is a UserControl that uses WPF databinding to show Title and Description.  I am clearly not taking advantage of the power of WPF in this example, but you get the point:).  You achieve this through the following code:

image

You set the InfoBox property of the map to an instance of your UserControl.  The map control does all the heavy lifting of positioning/showing/hiding your UserControl.  The map control also allows you to add as many UserControls as you’d like through map.AddControl.  However, you are responsible for positioning the controls yourself.  In the picture below, I have replaced the default Virtual Earth Dashboard control with a UserControl containing WPF buttons:

image

If the WPF WebBrowser control still has the z-order issue, then how am I rendering WPF content on top of the map?  I am using what I have been calling "layered window trickery" for lack of a better term.  The map control loads a transparent window with a higher z-order than the window the control is in.  The map control places the transparent window itself "covering" the area of the map control.  Since the top window is transparent, interaction with the map below behaves as if there isn’t a window over the map control.  When a call is made to map.AddControl() or to set the map.InfoBox property, I actually add the UserControl to the top window.  As you can imagine there is a bit of repositioning logic for the top window & WPF UI over top of the map.  I plan on recording a Channel 9 Screencast walking through the code.  If you can’t wait, then you can just download the sample here and dig through it yourself.  The control uses new features in the .NET Framework 3.5 SP1.  Make sure you install Visual Studio 2008 SP1 Beta before trying to open it.  Details here.

digg_url = ‘http://blogs.msdn.com/devkeydet/archive/2008/06/24/wpf-and-virtual-earth-revisited.aspx’;
digg_skin = ‘compact’;http://digg.com/tools/diggthis.js

FOLLOW UP: RIA Dinner (Reston, VA)

Thanks to everyone who attended the RIA dinner on June 17th.  I promised to publish the deck and code James used as well as some follow up links.  Here they are:

Presentation – deck, code

Expression on microsoft.com – http://www.microsoft.com/expression/

Expression Community Site – http://expression.microsoft.com/en-us/default.aspx (lots of great resources on the "learn" tab)

Expression Design Forum – http://forums.expression.microsoft.com/en-US/design/threads/

Expression Blend Forum – http://forums.expression.microsoft.com/en-US/blend/threads/

Expression Blog – http://blogs.msdn.com/expression/

nibbles: snack tutorials for hungry designers – http://www.nibblestutorials.net/

Technorati Tags: ,,

FOLLOW UP: Public Sector Developer Conference (Nashville, TN)

Thanks to everyone who attended.  Sorry about the overflow into the hallways.  There was much less dropoff between registration and attendance than we normally see.  Some of the content isn’t published yet.  Once it is, we’ll make sure to update this post with the appropriate links.

Building Rich Internet Applications Using Microsoft Silverlight 2

Building WPF Applications in Visual Studio 2008 and Expression Blenddeck, code

Data Access with Language Integrated Query

Overview of the .NET Framework 3.5 SP1 & ASP.NET MVC – deck, code

We also mentioned some downloadable tools that folks were interested in using.  Here are the ones I remember:

Visual LINQ (to SQL) Query Builder

LINQPad

If I forgot one, please let me know by posting a comment and I will update the post.  Thanks!

Marc

WPF validation with Enterprise Library 4.0

If you have not heard the announcement elsewhere, Enterprise Library 4.0 from patterns & practices is now availableMartin Bennedik just updated his WPF integration for the Validation Application Block (VAB) to work with Enterprise Library 4.0.  He has also added some very convenient features.  This is a MUST HAVE if you are looking to use VAB for validation of your business objects/entities.  The ErrorProvider from Martin makes surfacing the errors in your WPF UI so easy!

Technorati Tags: ,