Anybody?
This is probably a very simple question.
I am just testing this on my own. I have 2 tables:
Table name:fields
Employer: Employer Number (primary key), Employer Name
Employee: SIN, Name, Employer Number
I have related Employer Number in the relationship area for both
tables.
I then created a forum and it has the employee information. I now
want the employer name to appear as read only when I type in the SIN
of the employee. I created a read only combo box and typed into the
"row source" area of the properties :
- SELECT Employer.[Employer Name] FROM Employer;
- But this only gives me a drop down list of the Employers and it
doesn't automatically update the employers depending on the SIN of the
Employee I type in.
Anyway, this all works when I use the wizard but I was wondering why
it didn't work when I tried to do it manually using SELECT commands in
SQL?????
Special Alien thanks to anyone out there!!
This is probably a very simple question.
I am just testing this on my own. I have 2 tables:
Table name:fields
Employer: Employer Number (primary key), Employer Name
Employee: SIN, Name, Employer Number
I have related Employer Number in the relationship area for both
tables.
I then created a forum and it has the employee information. I now
want the employer name to appear as read only when I type in the SIN
of the employee. I created a read only combo box and typed into the
"row source" area of the properties :
- SELECT Employer.[Employer Name] FROM Employer;
- But this only gives me a drop down list of the Employers and it
doesn't automatically update the employers depending on the SIN of the
Employee I type in.
Anyway, this all works when I use the wizard but I was wondering why
it didn't work when I tried to do it manually using SELECT commands in
SQL?????
Special Alien thanks to anyone out there!!
Comment