Datagridview Insert
-
Hi ppl, I have a datagridview(dgv) on my winform with editable rows. The dgv is not bound to any datasource. I want to programatically capture the data inserted into these rows and store it to the database table. How to do this? Pls suggest . Thanks,
-
Hi ppl, I have a datagridview(dgv) on my winform with editable rows. The dgv is not bound to any datasource. I want to programatically capture the data inserted into these rows and store it to the database table. How to do this? Pls suggest . Thanks,
-
You can get the DataGridViewRow of the datagridview and get the data from the cells of the row... Hope that helps...
Thanks & Regards, Pramod "Everyone is a genius at least once a year"
modified on Tuesday, February 23, 2010 7:43 AM
could show me a snippet please.