hello,i need help!

1)how to immediately update recordset and perform the sql query i request?
VB Code:
  1. Private Sub cmdtest_Click(Index As Integer)
  2. On Error Resume Next
  3.   With rs
  4.             .Fields("Location") = Txtlocation.Text
  5.             .Fields("DatePurchase") = DTPpurchase
  6.             .Fields("Item") = dcomboitem.Text
  7.             .Fields("Detail") = Txtitem2.Text
  8.             .Fields("IDNumber") = Txtidnumber.Text
  9.             .Fields("Price") = Txtprice.Text
  10.             .Fields("Status") = Combostatus.Text
  11.             .Fields("DateScrap") = DTPScrap
  12.             .Fields("Deletedate") = Txtdeldate.Text
  13.             Call clear
  14.         If MsgBox("are you sure want to update", vbOKCancel + vbExclamation, "update Record") = vbOK Then
  15.         .Update
  16.         Call display1
  17.     End If
  18.     End With
  19. end sub
  20.  
  21. Private Sub display1()
  22. Adodc1.ConnectionString = JetConnection
  23. Adodc1.Refresh
  24.  
  25.  Adodc1.RecordSource = "SELECT *from Inventory where Deletedate is Null"
  26.         Adodc1.Refresh
  27.  
  28. End Sub

thanks!