- MVVM Compared To MVC and MVPAt the recent Calgary Tech Days event I did a presentation on building composite applications with WPF and Silverlight. One question that I get asked…
- Singleton I love you, but you’re bringing me down (re-uploaded)I was sad to find out the “codingwithoutcomments” site was taken down. For the sake of a specific post from there, I went to waybackmachine.com and got…
- Fixing the "Microsoft Bus Driver" error message when installing a RealTek sound card - Geeks with Blogs[ ](https://geekswithblogs.net/aimee/what-is-replatforming/) Deciding to replatform is no small feat; it’s like setting sails for new horizons with your…
- MVVM Light Toolkit V3 Alpha 2: EventToCommand behaviorHere is another early release of the MVVM Light Toolkit V3 (Alpha 2). I decided to release gradually and early as soon as a new part of this new version…
- Up close and personal with Toshiba's new HD DVD player (the HD-A1) - Geeks with Blogs[ ](https://geekswithblogs.net/aimee/what-is-replatforming/) Deciding to replatform is no small feat; it’s like setting sails for new horizons with your…
- How to make a transparent background/selection on an image using GIMP - Geeks with Blogs[ ](https://geekswithblogs.net/aimee/what-is-replatforming/) Deciding to replatform is no small feat; it’s like setting sails for new horizons with your…
- C#/.NET Fundamentals: Finding an Item’s Index in IEnumerableSorry for the long blogging hiatus. First it was, of course, the holidays hustle and bustle, then my brother and his wife gave birth to their son, so I’ve…
- C# Toolbox: Debug-able, Self-Installable Windows Service Template ReduxI had written a pair of posts before about creating a debug-able and self-installing windows service template in C#. This is a template I began creating…
- How to handle “”Maximum request length exceeded” exceptionIn global.asax: protected void ApplicationBeginRequest(Object sender, EventArgs e) { HttpRuntimeSection runTime =…
- XDocument Extensionpublic static class XDocumentExtensions { /// <summary> /// Saves the contents of an XDocument object into a XmlDocument object /// </summary> /// <param…
- MSDTC on server ‘servername’ is unavailableBy default, when a stand-alone instance of Microsoft SQL Server exists in a cluster environment, the SQL Server-based instance is set to start…
- “Provide an object as a surrogate for the lack of an object of a given type. The Null Object provides intelligent do nothing behavior, hiding the details from its collaborators.”public class Person { private string name; public Person(string name) { this.Name = name; } public string Name { get { return this.name; } set { this.name…
- ‘System.Security.SecurityException: Requested registry access is not allowed.’ when writing to event logI got this error when I try to create an eventlog source and when I try to write to the new event log (after resorting to manually creating the event log…
- Difference between “throw” and “throw ex” in .NETException handling seems to be a common problem for .NET developers, particularly younger developers. We pretty much all know that you should wrap…
- MVC JSON – JsonResult and jQueryThe latest release of the MVC framework provides the JsonResult for Controller actions. I was surprised that I did not find a weatlh of examples for usage…
- Application Integration: Azure Functions Vs WebJobs\[Updated\] UI development gets all the attention, but application integration is where the real work is done. When it comes to application integration in…
- Building ViewModel Facade Objects – Part 1The MVVM (Model-View-ViewModel ) Design Pattern requires that you create a facade layer between the Model and the View called the ViewModel.
- The 23 Gang of Four Design Patterns .. Revisited - Geeks with Blogs[ ](https://geekswithblogs.net/aimee/what-is-replatforming/) Deciding to replatform is no small feat; it’s like setting sails for new horizons with your…
- Using KeyedCollectionA little over 2 years ago, I saw my peer’s code that uses the KeyedCollection<TKey, TItem> class. I never seen it before, and it is actually a pretty nice…
- Favorite Visual Studio 2010 ExtensionsNow that Visual Studio 2010 has been released, there are a lot of extensions being written. In fact, as of today (May 1, 2010 at 15:40 UTC) there are 809…
