In this article, I am going to show you, How to show images in DataGridView in Windows forms c#. Its easy to bind the DataGridView with the database table which is contain binary image. You can check this code to bind the DataGri...
Thursday, March 22, 2018
Saturday, May 14, 2016
Windows Forms Events
An event is generated when a user performs an action, such as clicking the mouse or pressing a key. When a user clicks a form, the clicks event is generated for the form.
Each form and control has a predefined set of events assoc...
Friday, April 15, 2016
Windows Forms Methods
Windows Forms methods enable you to perform various tasks, such as opening, activating and closing the form.
The commonly used methods are explained in the following:
1. Show ( )
Description : Is used to display a form.
Example...
Thursday, April 7, 2016
Types of Dialog Boxes in Windows Form C#
Windows provides the following type of dialog boxes:
1. Modal
2. System Modal
3. Modeless
Modal Dialog Box : A modal dialog box does not allow you to switch focus to another area of the application, which has invokes the d...
Wednesday, February 10, 2016
By using Single LINQ Query retrieve foriegn key table column
In this article, I will explain you, How to retrieve data from two joined table using single LINQ Query. Here we have two joined table in mentioned diagram. Both tables are joined from dept_no, so if you want to retrieve record ...
Tuesday, February 9, 2016
[Solved] Rows cannot be programmatically removed unless the DataGridView is data-bound to an IBindingList that supports change notification and allows deletion.
[Solved] Rows cannot be programmatically removed unless the DataGridView is data-bound to an IBindingList that supports change notification and allows deletion. When you bind the Datagridview with List in windows form. You get er...