Agus on July 20th, 2009

This small article is a review of a .NET component that will help you in creating a pretty good splash screen in C# or VB.Net. After having made my own splash screens for several projects and having tried different approaches for the task, I’ve found this very useful component while surfing on the net. Far [...]

Continue reading about .NET Splash Screen Component (C#, VB.NET)

Okay, I came across this error today:
Warning 1
The service System.Windows.Forms.Design.IEventHandlerService already exists in the service container.
Parameter name: serviceType

and it took me a while to find the solution. In my case, and I say this because I’m not sure if this will work in your case… the solution was as simple as cleaning the OBJ folder [...]

Continue reading about System.Windows.Forms.Design. IEventHandlerService already exists in the service container

After searching on google for a simple method to get the current installed version of the .NET Framework, I decided to implement my own. I have put this method in its own class, because there are probably a lot of other similar methods that could be grouped together.
using System;
using System.IO;
using System.Security;
using System.Text.RegularExpressions;

namespace YourNameSpace
{
[...]

Continue reading about C# code to detect which version of the .NET Framework is installed