Have the following tables:
Client
client_num text
client_name text
client_addr1 text
client_addr2 text
Jobs
client_no text
job_num text
job_start date
job_stop date
tot_hrs decimal
I have created a form with its data source of Jobs.
I have put a combo box on the form for the user to choose the client_num. I want the combo box filled with client_nums from the client table. when the user selects a client_num, I want a text box on the form to show the client_name.
I have googled and tried a thousand things. None have worked. I know this has to be simple, so ... what is the right way to do this ?