|
-
June 18th, 2009, 01:06 PM
#1
Help with DataTable, DataSet, DataGridView
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!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|