I have DataGridView (that hold any DataBase)
DataGridView
DataBase
I want to insert any value into any Cell (and that this value will save on DataBase)
How t
int index= datagridview.rows.add(); datagridview.rows[index].cells[1].value=1; datagridview.rows[index].cells[2].value="a"; datagridview.rows[index].cells[3].value="b";
hope this help! :)