is it possible to have the source of a text box set up as an SQL expression?
What i want to do is when the records from a particular table are displayed on a form, it goes out and grabs a field from another table which is related to it.
so the sql would be something like
SELECT [Phone Number] FROM CONTRACTS, CONTRACTORS
WHERE CONTRACTORS.NAME = CONTRACTS.NAME AND
CONTRACTORS.NAME = me.cname;
What i want to do is when the records from a particular table are displayed on a form, it goes out and grabs a field from another table which is related to it.
so the sql would be something like
SELECT [Phone Number] FROM CONTRACTS, CONTRACTORS
WHERE CONTRACTORS.NAME = CONTRACTS.NAME AND
CONTRACTORS.NAME = me.cname;