Problem report management is an inevitable part of the software development life cycle. A defect tracking system or bug tracking system is application software that keeps a track of reported software problems/bugs in a software project or product. Bug Tracking Tools C#.NET | Defect Tracking Tools C#.NET development or any other software development we always need a defect tracking mechanism and an established tool […]
Poor image resolution of ImageList Images in C# | Poor image quality in ListView C#
Poor Image Resolution of C# ImageList Images: If you ever used an ImageList for setting image icons to individual nodes of .Net controls like Treeview, List view etc, you might have noticed the deteriorated quality of the image when it is taken from the ImageList even if the size of the image remains same. ImageList is a […]
Best Free .NET Decompilers and Assembly Browsers | C# decompiler free download
Why we need .NET Decompilers and Assembly Browsers? In software development usage of third party components are inevitable.There can be possibilities of unexpected issues in that 3rd party components. For proper functioning of the software this referenced third party component issues to be identified properly, rather than doing a guess work. It is really difficult to […]
What is STAThread Attribute? | What Does [STAThread] Do?
C# STAThread Attribute In this post we will discuss the the purpose of STAThread attribute in Main() method of the C# program.[STAThread]static void Main() You must have noticed the above-given entry point Main() method in the program.cs class of all .NET windows forms applications are always decorated with the attribute STAThread. What is [STAThread] Attribute? […]
Difference Between nHibernate and Entity Framework 4.0
nHibernate and ADO.Net Entity Framework are ORM frameworks (object relational mapping frameworks).This post lists the major difference between nHibernate and Entity Framework 4.0. Entity framework is the Microsoft’s first ORM framework. Microsoft introduced ADO.NET Entity framework in .net framework 3.5 Service Pack 1. In an object oriented language, object-relational mapping framework is used to map […]
How to add text in a created table in a richtextbox?
In my previous article How to create Table InRichTextBox using C#, I explained in detail how can we insert a table in richtextbox. After that, I was seeing questions from developers that How to add text in a created table in a RichTextBox? This motivated me to write this post in which I will try […]