I have a small problem when I edit cells in my datagrid.
If I leave my cursor in the cell I just edited. and runds the updatecommand
the cell does not update the edited value.
But if I leave the cell before I run the updatecmmand it does.

Anyone who remember what I can do to fix this?

Recommended Answers

All 2 Replies

Post your code with explanation.

My update code looks like this:

If Kalkyle1DataSet.Tables("Materialer_total").GetChanges(DataRowState.Added Or DataRowState.Modified Or DataRowState.Deleted) Is Nothing Then
                    'there are no changes
                Else
                    Materialer_totalBindingSource.EndEdit()
                    Materialer_totalTableAdapter.Update(Kalkyle1DataSet)
                End If

And this works great, but my problem is when the marker/Cursor or whatever it it called is still blinking in the cell after I hav edited a value, this cell will not be saved with the new value but all the others is working as they should.

Is there sameting in the datagridview method that I can use to sort this problem out?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.