Videos tagged with Codebetter.com
In this episode we are going to take a look at how to handle tombstoning (when your application is not longer in focus, but is not shut down yet) in your WP7 application.When building out a WP7 application it is critical that your application can handle Tombstoning and rebuild itself as needed. This is to allow the user to have their work flow interrupted by an action, but still gives them the ...
DimeCasts.Net #183: Load Testing WCF Services w/ VS2010
In this episode we are going to take a look at how you can use Visual Studio 2010 to perform load testing on your WCF servicesWhen building out any WCF services it is very important to understand how they will handle under load and stress. You will want know that your services will respond well under peak load in order to allow your users to have a solid experiance. With VS2010 Ultimate there a...
DimeCasts.Net #180: Handling System Errors in MVC
In this episode we are going to take a look at how to perform error handling in Asp.Net MVC.We will focus on how you can build your MVC application to be able to handle 404 (file not found) and 500 errors (internal server error).
DimeCasts.Net #178: Going Out Of Browser w/ Silverlight
In this episode we are going to take a look at how we can use the take our in-browser silverlight application and allow it to run Out of Browser (OOB).We will take a look at how we can let silverlight perform the lifting as well as how we can provide coding to create the OOB application.
DimeCasts.Net #174: Understanding Navigation on Windows Phone 7
In this episode we are going to continue taking a look at the Windows Phone 7 Api.In this episode we are going to focus on learning about the various ways you can navigate from page to page within your application. Because WP7 is based off of Silverlight 3.x you are able to utilize all the native silverlight navigation techniques such as static routing (hard wiring the .xaml path), using routes...
DimeCasts.Net #173: Creating and using the Application Bar w/ Windows Phone 7
In this episode we are going to take a look at how to create the Application Bar for Windows Phone 7When creating an application with Win Phone 7 you may need to create an application bar which contains menus or icons. In this episode we will show you how to create both global app bars as well as local app bars.
DimeCasts.Net #167: Setting Up Basic Mappings w/ Fluent NHibernate
In this episode we are going to continue taking a look at Fluent Nhibernate. we are going to focus this episode on setting up basic mappings for NHibernate. We will focus on setting up Many-to-One (References) and One-To-Many (HasMany) references as these are the most common mappings you will need to setup.
DimeCasts.Net #166: Setting Up Fluent NHibernate for your project
In this episode we are going to take a look at how to use setup and configure Fluent NHibernate for usage. We will focus on how to setup your database settings as well as how to get your Fluent NHibernate mappings registered into the system.
DimeCasts.Net #163: Larning how to use the Extract Interface Technique
In this episode we are going to take a look at another refactoring technique, the Extract Interface technique.This technique allows you to extract an interface from a class in order to break your concrete dependencies. By doing this you can provide yourself with better testing support as well as a better layer of abstractions.
DimeCasts.Net #162: Learning how to use a Web Cam with Silverlight
In this episode we are going to take a look at how you can setup and use a web camera in Silverlight. We will walk you though how to capture both the raw video as well as how to take snap shots of the video.