Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / C#
Article

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

Rate me:
Please Sign up or sign in to vote.
4.47/5 (7 votes)
6 Jun 2006CPOL1 min read 59.1K   25   8
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)

C#
// 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)

C#
//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)

C#
//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

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 86594317-Apr-12 23:26
Member 86594317-Apr-12 23:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.