So far all i have done, is copyed the ADD COMPANY code, and tried to change .addrow commands to something like .clear ... or .delrow
Is there even such a command?

How do you delete rows out of an access database?

VB Code:
  1. Private Sub removebtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles removebtn.Click
  2.         'Remove a Company
  3.         Dim dtcmp As DataRow = m_Company.ClearRow
  4.         dtcmp("CompanyName") = companybox.Text
  5.         dtcmp("Address") = addressbox.Text
  6.         dtcmp("Phone") = phonebox.Text
  7.         dtcmp("ABN") = abnbox.Text
  8.         m_Company.Rows.Remove(dtcmp)
  9.         m_DataAdapter.Update(m_Company)
  10.         MessageBox.Show(companybox.Text & "has been deleted", _
  11.                 "Message Type: CMP SAVED", MessageBoxButtons.OK, MessageBoxIcon.Information)
  12.         m_Connection.Close()
  13.         'Add the Company Name in the List box...
  14.         clientbox.Items.Remove(companybox.Text)
  15.         Catch objException As Exception
  16.             Dim what As MsgBoxResult
  17.             what = MessageBox.Show("An Error Occurred: " & objException.Message, _
  18.             "Message Type: Error In NewCompany (fclsNewCompany)", MessageBoxButtons.OK, MessageBoxIcon.Error)
  19.         End Try
  20.     End Sub