How to add a filled or already prepared row to a binding source data table?

  • Thread starter Thread starter Shan1986
  • Start date Start date
S

Shan1986

Guest
Hallo ,

I know i can add a new row by following way

Dim nRow = DirectCast(BS.AddNew(), DataRowView)
nRow("col1") = "xxx"
nRow("col2") = "xxx"
nRow("col3") = "xxx"
BS.EndEdit

it first create an empty row and populates later. Is there a way to add values directly to a new row without creating an empty row first?

thanks

Continue reading...
 
Back
Top