RowChanged DataTable RowCollection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In the RowChanged event an added row is not in the rows collection of the
datatable.
Is there an event after the RowChanged event where the row is in the tables
row collection?

Thanks Edi
 
Hello Val Mazur

In the RowChanged event I call a method to check the whole datatable for
some values.

Thanks Edi
 
Edi,

When the row change event is fired, and the row is *correctly* added to a
table, than in my opinion the row would be there.

Just my thought,

Cor
 
Hi,

Since you have an access the whole table and access to the new row, even it
is not added to the datatable yet, I do not see any reason why you cannot do
this

--
Val Mazur
Microsoft MVP

http://xport.mvps.org
 
No, row added after this event happen. During event you have an access to
the newly created datarow, but it is not a part of the datatable at this
moment of time
 
Back
Top