Hi Guys / Gals
I am new to programming and am having some trouble with my code to update my data from a datagridview wich is bound to a datatable.
all works fine until the update proccess is started. The programs updates all my rows (x amount) on the datagridview but when it is saved the first rows data is reverted to what it was before update proccess was started..
EX.
My rows
ID Reg Brand
0 123 456
1 789 987
and i change those rows to
ID Reg Brand
0 321 654
1 987 789
then when it is saved / updated to the datatable it comes out like this
ID Reg Brand
0 123 456
1 987 789
The first row did not save the new data passed to the datagrid but all the other rows did save the data correctly...