To remove multiple records from the DataGridView, programmer need to write some line of code, code may be written in a button's click event that is outside of the DataGridView. The article shows about how to select multiple recor...
Tuesday, December 24, 2013
Tuesday, November 5, 2013
How to Provide Search Feature in DataGridView: Windows Forms
We have successfully bind our datagridview with a list of items discussed in earlier post. What if there are many records in our list and datagridview is looking full of records. In this case, user can’t even search any single re...
Friday, November 1, 2013
How to Access Record by DataGridViewButton: Windows Forms
I have created a DataGridViewButton for each particular record of DataGridView, as in my earlier post. Adding a button is not sufficient in programming, it should perform some functions when clicked, so we have to generate its cl...
Thursday, October 31, 2013
How to Add Commands with Binding in DataGridView: Windows Forms
After binding records with DataGridView, there may be some options to edit or to remove those records. To do these simple task we can provide either a button, which gets the selected record and perform operation, or we can provid...
How to Bind ComboBox with List of Items: C#
A list of items is used to store some temporary records, used in the program and do some operations like sorting, grouping and etc. In the previous post we have created a list and bind that list to the datagridview, using its Dat...
Saturday, October 26, 2013
How to Get Selected Fields from List Using LINQ: C#
When we bind a list with a control like datagridview, comboBox or listbox, then it will bind all the fields related to list. I have created a list of student with multiple fields i.e. Name, age, city and DOB. Now in this article ...
How to Bind DataGridView to List Of Items: C#
Datagridview is the common control to bind our records in windows forms. I have bound this datagridview to dataset and in this article I will bind a list of student class’s data. I will use the same student class as in my previou...
Friday, October 4, 2013
How to Edit Columns in SQL Server Binding: Windows Froms
When we bind the data grid view with SQL Server database, then it will show all the columns created in the table of database. According to our previous post we have displayed all the records of table, without writing a single lin...