Nov 22, 2002 #1 WOTRAC MIS Nov 22, 2002 36 GB How do I get a text box to look up a record from a database, when the text box gets focus N.B. The record is a single field in the database Wotrac
How do I get a text box to look up a record from a database, when the text box gets focus N.B. The record is a single field in the database Wotrac
Nov 22, 2002 1 #2 DanJR Technical User Oct 29, 2002 392 AU have a look at DLookup in the help file. e.g. Dim varX As Variant varX = DLookup("[LastName]", "Employees", "[EmployeeID] = 1" Cheers, Dan Upvote 0 Downvote
have a look at DLookup in the help file. e.g. Dim varX As Variant varX = DLookup("[LastName]", "Employees", "[EmployeeID] = 1" Cheers, Dan