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...
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...