Hi,
I have assigned the table "tblCustomers" to the DataGridView:
dgv1.DataSource = dsObject.Tables["tblCustomers"] ;
Now i want to reverse this, how do i fetch the DataTable object (NOT THE DATATABLE NAME) that was assigned to the dgv1?
TY
Loading
Master BillaPosted Oct 16, 2009, 10:23 PM
You can try this
DateTable tbl = Gridview1.DataSource as DataTable;thank you