Welcome to Ultra Developers.

the company that developes your success

Read Blog


Walkthrough: Maintaining Selected Row of the DataGridView Control after refreshing Data.

Walkthrough: Maintaining Selected Row of the DataGridView Control after refreshing Data.

Sometimes you need to maintain the selected row that you want to take an action on. If you make a refresh of data in the DataGridView the selected row will be lost, especially when you refresh data in a separate thread. In this article we will know how to maintain the selected row in the DataGridView Control using C#.

First of all let me show you the scenario that this article may benefit. Suppose that you have created an application that customers uses to place orders. These orders are reviewed by an employee in the company and after review it passes the selected order to be executed. These orders are refreshed automatically. Suppose the employee has selected an order and then passes that order while he passes the order the data is refreshed and the employee has found that he passes another order not the previously selected one.

So you have to maintain the selected order while refreshing data to overcome this problem.

Suppose you have a database table named orders, the orders table has a primary key column named order Id. In the following steps you will create an application to get orders from the database and display them in a DataGridView Control using the BindingSource component.

To maintain the selected row in the DataGridView Control follow these steps:

  1. Create a new windows application using Visual Studio 2005/2008.
  2. Rename Form1 to OrdersForm.
  3. Add a DataGridView Control to the OrdersForm.
  4. Rename the DataGridView Control to OrdersDataGridView.
  5. Set the data source of the OrdersDataGridView this will create a new binding source. Rename the binding source to ordersBindingSource. You can know more about Windows Forms Data Binding.
  6. Write your code to populate the OrdersDataGridView with data from the database or any other sources.
  7. To refresh data automatically follow these steps:
    • Add a Timer component to the Form and name it RefreshTimer.
    • Set the RefreshTimer Enabled property to true.
    • Set the RefreshTimer Interval to the time (in milliseconds) you want to refresh data each time, for now you can set it to 30000 milliseconds (30 seconds)
    • Implement the RefreshTimer Tick event and write the code that populates the OrdersDataGridView from the data source.
private void RefreshTimer_Tick(object sender, EventArgs e)
{
    //Write the Code that populates the DataGridView with data from datasource.
}
  1. For now you can run the application and check you will see that each 30 seconds data will be refreshed.
  2. If you selected an order in the OrdersDataGridView and new orders have been added in the data source, the selected order is lost and another order is now selected.

Note: The DataGridView maintains the selected index only that means that if you select row number 7 and refresh data the row number 7 will be selected.

  1. Now we will maintain the selected order in the OrdersDataGridView using the following steps:
    • Add a string global variable named selectedOrder to the OrdersForm. This variable will be used to save the selected order Id to be used later.
    • Implement the SelectionChanged event of the OrdersDataGridView Control.
    • In the SelectionChanged event we will set the selectedOrder to the selected order Id as follows
if (OrdersDataGridView.SelectedRows.Count > 0)
{
    selectedOrder = OrdersDataGridView.SelectedRows[0].Cells[“Order Id Column Index”].Value.ToString();
}
  1. In the above code:
    • We simply checks if any of the OrdersDataGridView row is selected and assigns the selected orderId to the selectedOrder variable.
    • In the above code replace Order Id Column Index with the index of the orderId Column.
    • Now we save the selected order Id.
    • Implement the DataBindingComplete of the OrdersDataGridView Control and write the following code
if (!string.IsNullOrEmpty(selectedOrder) && e.ListChangedType == ListChangedType.Reset)
{
    if (ordersBindingSource.List.Count > 0)
    {
        selectedIndex = ordersBindingSource.Find(“Orderid Column Name”, selectedOrder);
        
        if (selectedIndex <= 0)
           selectedIndex = 0;
        
        OrdersDataGridView.Rows[selectedIndex].Selected = true;
    }
    else
    {
        selectedOrder = string.Empty;
    }
}
  1. In the above code:
    • We simply checks if the selected Order variable has a value.
    • If the selected Order has a value, then we use the Find method of the Binding Source component to find the new index of the selected order.
    • If we found the selected order in the binding source we get its new index in the binding source items.
    • If we found the new index, then we mark this row as selected in the OrdersDataGridView.
    • If the order is not found the binding Source, then we set the selected row to the row with index 0.

Now you have a DataGridView that maintains the selected row according to the data itself not the index of the selected row.

Similar Posts