Right...this is dead easy. I didn't read this thread yesterday as I thought someone would have already answered it:
VB Code:
  1. Private Sub cmdDelete_Click()
  2. Dim adoConn As Connection
  3. Dim lvwItem As ListItem
  4. Dim strSQL As String
  5.     Set lvwItem = ListView1.SelectedItem
  6.     If Not (lvwItem Is Nothing) Then
  7.         Set adoConn = New Connection
  8.         adoConn.Open CONN_STRING
  9.         strSQL = "DELETE * FROM TABLE WHERE ID = " & lvwItem.SubItems(1)
  10.         adoConn.Execute strSQL
  11.         ListView1.ListItems.Remove lvwItem.Index
  12.         Set lvwItem = Nothing
  13.         adoConn.Close
  14.         Set adoConn = Nothing
  15.     End If
  16. End Sub
Woooof