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...
Wednesday, September 25, 2013
How to Retrieve Data from SQL Database: Windows Forms
In my previous post, I have created a connection object and then get all the records from the database table. What if we want to bind our datagridview without writing a single line of code? So in this article we will do something...
Thursday, September 19, 2013
How to Bind DataGridView with DataSet in Windows Forms: ADO.NET
In our previous post, I have described about the ways to bind datagridview in windows forms. The first way is to bind the datagridview with dataset and show the data of a table in the gridview. Here is the syntax of binding in c#...
Tuesday, September 3, 2013
How to Add Columns in DataGrid Control: WPF
Datagrid is used to represent a tabular view of data in programming. It have multiple template designs to be customizable by the programmer as per the requirements. It supports some other features like sorting the data, dragging ...
Monday, August 19, 2013
Passing Values from DataGridView between Different Forms
Sometimes we need to transfer all the rows and columns of a DataGridView from one form to another. In this article I will transfer all the binded data of first form's grid view and bind them to second form's grid view.
Create tw...