Hello all,

I'm using Visual Studio 2008, and I have a few DataGridViews being populated by Oracle stored procedures. I have a static method that adds a checkbox column to the DataSet populating the DGV:

public static void addCheck(DataSet ds)
{
DataColumn dc = new DataColumn("Select", System.Type.GetType("System.Boolean"));
ds.Tables[0].Columns.Add(dc);
}

I need to pick up on the selections in the checkboxes and store the values else where, so I can run them through another stored procedure, but I can't figure this part out. Any help would be much appreciated!