
Wisdom Thoughts
By three methods we may learn wisdom:
First, by reflection, which is noblest;
Second, by imitation, which is easiest; and
Third, by experience, which is the bitterest.
Related articles

This post is regarding how to replace first occurrence of one or more characters from database table Column. Suppose we have table named User with columns Id, Name, Phone Number as shown in the figure below. And contains records as shown in figure below: Now what I required to accomplish is replace the first ‘-’ [...]

Wisdom Thoughts
By three methods we may learn wisdom:
First, by reflection, which is noblest;
Second, by imitation, which is easiest; and
Third, by experience, which is the bitterest.

This post is to share my experience with Global Windows Azure Boot camp event that happened in Ahmedabad. About The Event The event was about getting started with Windows Azure and Getting started with the Windows Azure Training Kit for any developers whether experienced or fresher and working on any programming platforms. The event was also about how [...]
Dear reader, Recently I noticed in my daily work that every time I logged in MS SQL I was required to select the database which I had to work on and this was regularly in use by me and this lead me to find the solution to change the default database selection after I log [...]
Some brief before we continue Hi! In the last article on this topic here MULTIFILE ASSEMBLY part – I, I had talked conceptually about creating multi-file assembly and possible usages. In this post we will have more insights on the implementation part regarding multi-file assembly and using MEF to apply the concept practically in the [...]
HB Code – Line of business application for WPF This project is made available as open-source and hosted freely on www.codeplex.com. Prerequisites Object-oriented programming using C#.NET and LINQ. Nuget package usage. Basic knowledge of WPF application building such as input controls, container controls, triggers, styles, templates. Entity Framework, currently knowing any of versions of [...]
What is Multi-file assembly? It is an application assembly either web-based or desktop-based which spans across many files to support extensibility and dynamically adding new features. What is Modules? Modules means class files such as Program.cs or frmMain.cs, in context of assemblies. Usage of Multi-file assembly Using different modules written in different .NET based programming languages [...]
Many of us would have been creating setups for applications either using WinForms or WPF and other such, but we really ignore the fact that users might not have all the prerequisites that our application requires to work. Possibilities for that might be one or more as below: User do have .NET framework even installed. [...]