keydet
Niner since 2005
-
Integrating with systems behind a firewall from CRM Online using Windows Azure Service Bus Relay
Avg Rating: 0
The Windows Azure Service Bus Relay enables applications hosted anywhere with an internet connection to securely call back to applications hosted in your own datacenter behind a firewall. The CRM 2011 SDK offers documentation on how to use the Windows Azure Service Bus Relay from CRM Online. ...
-
Merging CRM 2011 Solutions
Avg Rating: 0
In the Organize Your Team To Develop Solutions section of the Microsoft Dynamics CRM 2011 SDK, there is a section that talks about merging 2 or more unmanaged solutions by importing them into a master solution. However, the SDK doesn't exactly explain how. In this screencast,...
-
Script# & Dynamics CRM 2011
Avg Rating: 0
In this video, I walk you through two core usage scenarios for Script# in the Dynamics CRM 2011 context:
- Creating JavaScript web resources
- Sharing basic logic across server-side code (plugins/workflow activities) & client-side code (JavaScript web resources)
Think of this as an alternative approach...
-
Dynamics CRM 2011 Validation Framework - Setup and Configuration Walkthrough
Avg Rating: 0
@devkeydet walks you through the functionality of his regular expression validation framework sample for Dynamics CRM 2011. The sample shows you the foundational pieces of creating a custom, reusable validation framework for CRM forms/entities that allows you to define the validation rule through...
-
Hybrid Solutions with Windows Azure Connect
Avg Rating: 0
In this screencast, Marc Schweigert (@devkeydet) shows you how easy it is to configure Windows Azure Connect to allow Windows Azure Compute Roles (Web/Worker/Virtual Machine) to communicate with a server behind your firewall (aka on-premises). In “cloud computing” terms, this approach...
-
JavaScript Intellisense for SharePoint
Avg Rating: 0
In this screencast, you will learn how to get the most out of JavaScript programming with SharePoint 2010 projects in Visual Studio 2010. You will see how to get JavaScript Intellisense and debugging working for jQuery and the Client Object Model. You'll...
-
Code Coverage for Silverlight and Windows Phone ViewModels
Avg Rating: 0
From http://en.wikipedia.org/wiki/Code_coverage:
"Code coverage is a measure used in software testing. It describes the degree to which the source code of a program has been tested."
In this screencast, you will learn how to get code coverage for your Silverlight and/or Windows Phone ViewModels...
-
Congress App for Windows Phone 7
Avg Rating: 5
(1)This video introduces the SunLight labs Congress application for Windows Phone Series 7. It demonstrates the key features of the Congress application and explains a bit about the Sunlight Labs API which allows users to:
- Search for legislators by last name, 2-letter state code, and last name....
-
Welcome to the Open Government Data Initiative (OGDI)
Avg Rating: 0
The Open Government Data Initiative (OGDI) is an initiative led by Microsoft Public Sector Developer Evangelism team. OGDI uses the Windows Azure Platform to make it easier to publish and use a wide variety of public data from government agencies. OGDI is also a free, open source ‘starter kit’...
-
Improving perceived WPF app startup performance with MEF and a Splash Screen
Avg Rating: 0
In this screencast, Marc highlights some tips and tricks for improving perceived startup performance of Windows Presentation Foundation (WPF) applications using the Managed Extensibility Framework (MEF) and a Splash Screen. The walkthrough focuses on using the .NET Framework 4.0. ...
Staff
Here is a list of Channel 9 staff members.
Running Reporting Services Reports in Windows Azure
Feb 25, 2010 at 5:55 PMVideo updated!
Running Reporting Services Reports in Windows Azure
Feb 25, 2010 at 2:05 PMBrian Hartman (http://blogs.msdn.com/brianhartman/) just informed me that you have to add a reference to Microsoft.ReportViewer.DataVisualization.dll if you use the chart or gauge visualization.
I will update the screencast when my schedule permits...
Thanks Brian!
Saving Virtual Earth Polygons to SQL Server 2008
Jul 21, 2008 at 7:27 AM"The main site feed is all the content that goes to the home page.
There are other feeds, like one for your blog, one for all screencasts, one for all media, etc… that would contain this post."
However, I notice that when you navigate to http://channel9.msdn.com/Media/Screencasts/ and click the "Subscribe" icon, you get redirected to the main site feed (http://channel9.msdn.com/Feeds/RSS/). I'm following up and will report back with how one is supposed to discover the "all screencasts" feed.
-Marc
Saving Virtual Earth Polygons to SQL Server 2008
Jul 19, 2008 at 5:39 AM-Marc
Using Virtual Earth in a WPF Application
Jul 01, 2008 at 7:27 AMI actually had WPF pushpins originally, but chose not to go that route. That's not to say you couldn't. In fact, I actually use an invisible (Opacity=".01") WPF button over the pushpin rendered by the map. That's how I chose to implement the ability to hover over the pushpin and get a WPF InfoBox (implemented as a UserControl). If you really want to have WPF based pushpins, just comment out line 387 in VEMap and comment out line 401 which is the call telling VE to add the pushpin.
I chose not to use WPF pushpins for two reasons. First, it seemed like overkill to render such a small UI element as a vector graphic since pushpins are typically fixed width and height. Second, due to the delay in event notification between JavaScript & managed code, the repositioning of the pushpins is a little “jerky.” So I am a bigger fan of drawing your pushpins with a vector drawing tool, and then saving them as bitmaps. You get the same visual experience with better overall perf. Your mileage may vary.
Exposing/Consuming RSS/ATOM using WCF 3.5 & Silverlight 2
Apr 15, 2008 at 5:02 AMYou can see http://msdn2.microsoft.com/en-us/library/bb383973.aspx for more details.
Personally, I think using the var keyword is a matter of preference, but not a terrible programming practice as you suggest. The beauty is that the following two lines of code are identical to the compiler:
var request = new WebClient();
WebClient request = new WebClient();
Exposing/Consuming RSS/ATOM using WCF 3.5 & Silverlight 2
Apr 11, 2008 at 1:40 PMI don't think there is necessarily a right or wrong answer here. I think it is a bit of a stretch to suggest I have declared request improperly. It would be more accurate to say that I have declared request in a way that you dislike for valid reasons. You make some really good points about the side effects of using var. I appreciate you making these points because it is very important for people to understand the side effects you mention. Unfortunately, I can't cover every detail about all the technology in use in a screencast/demo. If I did, the screencast would have been at least twice as long:).
You may be right about laziness. I find myself using var in a number of scenarios I suspect you would dislike. Maybe I am using it so much because I’ve done quite a bit of JavaScript/AJAX programming of late and it has become a habit. Who knows? I think one could argue a number of technologies such as intellisense, code snippets, and many more have made me a lazier programmer over the years. I surely know that I can't code in notepad or vi like I used to because of my dependency on both IDE and language features. Then again, it is also fair to say that the productivity gains outweigh the dependency on the features.
With the var keyword, it seems the documentation at http://msdn2.microsoft.com/en-us/library/bb383973.aspx would somewhat support your statements since it says “It is recommended to use var only when it is necessary, that is, when the variable will be used to store an anonymous type or a collection of anonymous types.” However, like any documentation, it is a recommendation. I still believe the use of var is a matter of preference. Am I misusing the var keyword? That’s in the eye of the beholder. I know where you stand:).
JavaScript Intellisense for the Virtual Earth Map Control
Mar 06, 2008 at 10:40 PMJavaScript Intellisense for the Virtual Earth Map Control
Feb 26, 2008 at 2:44 PMAJAX Enabling ASP.NET 2.0 Web Parts with "Atlas"
Sep 17, 2007 at 7:23 AMSee more comments…