E
esee
I have two Forms (and Tables): BankProfile Form, and Addresses Form.
The Addresses Form has a two digit State Code in it.
When I show the BankProfile Form, I would like to show the State Code
from Addresses.
I don't know how to do this. Is the control on BankProfile Unbound,
or bound to what?
I have a combo box with the following SQL view, but I don't want to
select a value, I want it to fill in automatically.
SELECT tblAddresses.AddrID, tblAddresses.State, tblAddresses.BankID
FROM tblBanks INNER JOIN tblAddresses ON tblBanks.BankID =
tblAddresses.BankID
WHERE (((tblAddresses.BankID)=[Forms]![BankProfile]![BankID]));
Thanks for you suggestions...
The Addresses Form has a two digit State Code in it.
When I show the BankProfile Form, I would like to show the State Code
from Addresses.
I don't know how to do this. Is the control on BankProfile Unbound,
or bound to what?
I have a combo box with the following SQL view, but I don't want to
select a value, I want it to fill in automatically.
SELECT tblAddresses.AddrID, tblAddresses.State, tblAddresses.BankID
FROM tblBanks INNER JOIN tblAddresses ON tblBanks.BankID =
tblAddresses.BankID
WHERE (((tblAddresses.BankID)=[Forms]![BankProfile]![BankID]));
Thanks for you suggestions...