Author Archives: Anuraj P

Drive combo box in C#

As most of the .Net developers, I am also started my development career with VB6. VB6 comes with few file system controls, like DriveListbox, DirectoryListbox, FileListbox etc. But in .Net framework didn’t support these controls. Here is a solution for … Continue reading

Posted in .Net, .Net 3.0 / 3.5, .Net 4.0, Win 32 API, Windows Forms | Tagged , , , , , | 1 Comment

Fuslogvw.exe and diagnosing .NET assembly binding issues

Yesterday while working with NUnit, I got an exception like this It was working fine day before yesterday, and I didn’t modified any system settings, so I didn’t understand what went wrong. Instead of looking into more details, I reinstalled … Continue reading

Posted in .Net, .Net 4.0, Miscellaneous, Visual Studio, Windows 7 | Tagged , , , , , | 1 Comment

The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail

Today I got a comment from Vitor, Vitor is getting an exception like this while starting application. The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe … Continue reading

Posted in .Net, .Net 3.0 / 3.5, .Net 4.0, Visual Studio, Windows 7 | Tagged , , , , | 1 Comment

How to create your own custom Accelerator for Internet Explorer

The Accelerator feature of the IE helps to quickly perform everyday browsing tasks without leaving the website. Simply highlight the text, click on the blue Accelerator icon that appears above your selection, it will popup the different Accelerator options. For … Continue reading

Posted in Miscellaneous | Tagged , , , | Leave a comment

How to write an NUnit Addin

From version 2.2.x NUnit supports AddIns. Addins can customize NUnit’s internal behavior such as the creation of tests and their execution. An Addin should to implement the interface NUnit.Core.Extensibility.IAddin, which can be found in the assembly nunit.core.interfaces. Also the NUnit.Core.Extensibility.NUnitAddinAttribute … Continue reading

Posted in .Net, Miscellaneous, Unit Testing | Tagged , , , , | 1 Comment