Commiting the changes on a datagridview.

  • Thread starter Thread starter Paulers
  • Start date Start date
P

Paulers

Hello all,

I am adding Rows to a DataGridView but the rows are remaining in edit
mode. How can I force the rows out of edit mode so the EndEdit event
will run?

thanks!
 
You need to write the row to an underlying table. The easiest way to
manipulate a datagridview is to base the datasource on an underlying
table. The datagridview is a bit different than a listview. It does a
lot more stuff.

Rich
 
Back
Top