I have problems with appending and deleting a row from the form.The table i have is called products and the other table ProductsArchive.I want to carry out the actions from my button for finding the products :
Dim StrProduct As String
StrProduct = InputBox(“Please enter Product number “)
If StrProduct = “” Then
Exit Sub
End If
Me.RecordsetClone.FindFirst “ProductID = ” & StrProduct
If Me.RecordsetClone.NoMatch Then
MsgBox “Product ” & StrProduct & ” Not Found!!”
Else
Me.Bookmark = Me.RecordsetClone.Bookmark
End If
What is the command to append and delete the row with the chosen productid, after i have found it with the above code ?