Textbox query question

PaulG

New member
Local time
Yesterday, 22:16
Joined
Jun 21, 2010
Messages
7
I'm an access novice and have done textbox queries in VB in college and have long since forgorten. I want to query one field in a record and display the entire record in the text boxes on my form. is there any help out there?
 
You need to setup the forms recordsource, and have it requery everytime that "one field" is editted
 
I have the recordsource set up, I want to query from a textbox on my form and hit enter or push a command button to execute the query. I know there is an event involved but I don't know how to code the event.
 
if your recordsource is setup, just insert

Code:
me.requery

On button click
 

Users who are viewing this thread

Back
Top Bottom