try this,
Here VTS_VH_STATUS, is my typed dataset, replace u'r dataset
Dim drow As VTS_VH_STATUS.VTS_VH_STATUSRow
drow = LocalDataSet.Tables(0).Rows(0)
drow.BeginEdit()
drow.Delete()
drow.EndEdit()
and use the DataSet ie., LocalDataSet here
This is VB.NET code.
Regards,
Ramsh