I have created a form that has a listbox on it. It is linked to one table called tblClient. The listbox contains clients initials. I click on the initials and a click event gets executed. For some reason the clients initials get copied to the client below and now that client exists twice in the table (tblClient) and the other client is missing. What can I do to prevent this from happening? None of the queries within the Process steps do anything with the table in question.
Tom
Tom
Code:
Private Sub txtUCI_Click()
Dim strUCI As String
strUCI = txtUCI.Value
With DoCmd
'Run all the Delete Queries
Call ProcessStep1
Call ProcessStep2
Call ProcessStep3(strUCI)
Call ProcessStep4
End With
End Sub