Yes, I believe that is what has happened with those two forms.
While we are on the subject, I have a 3rd form that instead of having a list box and a dblclick event, I have a unbound text box on the form with code behind a command button to search for the ID and thus populate the actual record related to the ID. I have this functionality on another form and it works like a charm, but I cant get it to work here. Any ideas?
Here is the code:
Very frustrated,
KJ
While we are on the subject, I have a 3rd form that instead of having a list box and a dblclick event, I have a unbound text box on the form with code behind a command button to search for the ID and thus populate the actual record related to the ID. I have this functionality on another form and it works like a charm, but I cant get it to work here. Any ideas?
Here is the code:
Code:
Private Sub cmdFind1_Click()
Me.Recordset.FindFirst "[ID] = & Nz(Me!txtIDFind, 0)"
End Sub
Very frustrated,
KJ