Hi,
My form contains an unbound textbox named "txtFind".
User is supposed to enter a customer id number and type 'enter'.
Event behind "txtFind" is:
Private Sub txtFind_AfterUpdate()
Dim rs As ADODB.Recordset
Dim x
x = DLookup("Customer_nr", "CUSTOMERS", "Customer_nr = " & txtFind)
If...