65.9K
CodeProject is changing. Read more.
Home

How To Create a DataSet from Multiple Selected Rows in a DataGrid

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.47/5 (7 votes)

Jun 6, 2006

CPOL

1 min read

viewsIcon

59847

This article describes how to create a DataSet from multiple selected rows in a DataGrid object.

Introduction

I searched and searched the Internet for an easy way to take the rows that my users selected in a DataGrid and insert them into a DataSet or some other form of container that I could then make use of in my code. More specifically, when the user would sort and select multiple rows.

While I did find articles that helped, I came up short of the vision of creating an actual DataSet. One of these articles was off of The Code Project Web site published by Chad Z. Hower aka Kudzu called "Obtaining Current DataTable Row for a DataGrid". This was helpful if my users only selected one row but did not achieve the multi-row requirement.

I am not sure how advanced or basic this really is. All I know is that my searches kept coming up short. Since I am an avid user of code that I find on the Internet, I felt it was my moral obligation to give something back and that this was my chance to do so.

Code

public static DataRow GetCurrentDataRow(DataGrid aGrid)

// Gets Currently Selected Row in a Datagrid.
{
CurrencyManager xCM = 
    (CurrencyManager)aGrid.BindingContext[aGrid.DataSource, aGrid.DataMember];
DataRowView xDRV = (DataRowView)xCM.Current;
return xDRV.Row;
}

public static ArrayList GetSelectedRowsArray(DataGrid aGrid)

//Returns an ArrayList containing the indexes of selected rows in a DataGrid 
{ 
   ArrayList al = new ArrayList(); 
   CurrencyManager cm = 
        (CurrencyManager)aGrid.BindingContext[aGrid.DataSource, aGrid.DataMember]; 
   DataView dv = (DataView)cm.List; 
   for(int i = 0; i < dv.Count; ++i) 
   { 
     if(aGrid.IsSelected(i))
        al.Add(i); 
   } 
   return al; 
}

GetSelectedRowsDataSet(DataGrid aGrid)

//Returns a DataSet containing information for selected rows of a DataGrid.
{ 
   //DataSet and DataTable objects used in creating the new DataSet. 
   DataSet ds = new DataSet(); 
   DataTable table = new DataTable(); 
   try 
   { 
      //Use the CurrencyManager to create a data view so that you can 
      //use this to create the table schema. 
      CurrencyManager cm = 
        (CurrencyManager)aGrid.BindingContext[aGrid.DataSource, aGrid.DataMember]; 
      DataView dv = (DataView)cm.List; 
      //Add columns from dataview to table 
      foreach(DataColumn col in dv.Table.Columns) 
      { 
         table.Columns.Add(col.ColumnName); 
      } 

      //Using the GetSelectedRowsArray function loop through each of the selected 
      //row indexes setting the CurrentRowIndex property of your grid. Then import 
      //the current row using the GetCurrentDataRow function. 
      foreach(int i in GetSelectedRowsArray(aGrid)) 
      { 
         aGrid.CurrentRowIndex = i; 
         table.ImportRow(GetCurrentDataRow(aGrid));      
      } 
      //Add your new table to the DataSet and return it. 
      ds.Tables.Add(table); 
      return ds; 
   } 
   catch (System.Exception se) 
   { 
      //Error has occurred 
      throw se; 
   } 
} 

Anyway, I hope this is helpful. Any ideas on how to improve would be helpful. Thanks and happy coding.

History

  • 6th June, 2006: Initial post