VB Code:
  1. MyConnection.Open()
  2.                 Dim delStr As String = "DELETE FROM PATIENTS WHERE PatientID='" & tboxPatientID.Text & "'"
  3.                 MyCommand = New OleDbCommand(delStr, MyConnection)
  4.                 MyCommand.ExecuteNonQuery()
  5.                 MyConnection.Close()

I am using this as my code for my delete button.PatientID was an autonumber field in my access database and apparently the application was giving me a "Data type mismatch in criteria expression" exception.When I replaced the string as " DELETE FROM PATIENTS WHERE LastName='" & tboxLastName.Text & "'", the code was doing fine, but of course it will delete all records with the same lastName.What could be a possible solution here?thanks...