Author Archive

Merging Image and text in a single gridview cell

Neither you can add image in DataGridViewTextBoxColumn nor you can add text in DataGridViewImageColumn so merging text and image in the same cell in datagridview is bit tricky. To achieve this you can create your own control inheriting from “DataGridViewTextBoxColumn” and overriding paint method. Or you can track the grid view’s paint event and write [...]

Identification of IPV4 and IPV6

IPV4 vs IPV6:

Problem Scenario: I was involved in developing an windows application which suppose to work on    windows 2003, windows xp or earlier version. But at the time of deploying the application to the one machine which is using Windows Vista as OS, my application crashes. It is not getting started. But the same [...]

Embedding forms inside a form in windows application

Embedding forms inside a form in windows application:
Problem Scenario:
Let me first give a brief introduction of the problem so that we can understand better about the context of the solution.
In one of my project, I need to wrap up an old application with the new features and functionalities. But the problem I faced is, [...]