I dont know is it my problem or what?!
I run the following codes to update(change) my data in a table but it doesnt work!!!
System.Data.DataRow mRow;
mRow = dataSet11.Tables["test"].Rows[BndMTest.Position];
//BndMTest is a object of BindingManagerBase
...update fields...
sqlDataAdapter1.Update(dataSet21, "test");
sqlDataAdapter1.Fill(dataSet21);
But if I want to update next or previous row ITS OK!! (when I set my row as mRow = dataSet11.Tables["test"].Rows[BndMTest.Position+1];)
please help me, how to update my curreny row.
Always:),
Hovik Melkomian.