delete using vb+access


/ Published in: VB.NET
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Private Sub DeleteRow(ByVal RowNumber As Integer)
  2. daLot.Fill(dsLot)
  3. dsLot.LOT.Rows.Find(lsvLot.SelectedItems.Item(RowNumber).Text).Delete()
  4. daLot.Update(dsLot)
  5. End Sub

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.