I need to Load 4thousand record into a datagrid for the user to choose.
After the user click the row, I will save it.
Now, How can I remove the uncheck row.
Dim myDelRowArray() As DataRow = dtRvDetail.Sele ct("check = false ")
Me.dtRvDetail.R ows.Remove(myDe lRowArray) <-- I know there is error, since i
cannot delete the datarowarray.
Any simple and easy way ??
thanks a lot
After the user click the row, I will save it.
Now, How can I remove the uncheck row.
Dim myDelRowArray() As DataRow = dtRvDetail.Sele ct("check = false ")
Me.dtRvDetail.R ows.Remove(myDe lRowArray) <-- I know there is error, since i
cannot delete the datarowarray.
Any simple and easy way ??
thanks a lot
Comment