I have the following setup
tblContinents, with ContinentID, Continent Fields
tblCountries with CountryID, Country, Continent, PostageRate
tblCustomer with CustomerID, Country, AddFields
Now on my main form where i enter the customers details i would like that as soon as i would enter the Country where he comes from, i would like to display the Continent and PostageRate associated with that country, because since i am already storing those pieces of information in the tblCountries, i do not see the need why i should store them again in the customers table.
I think that i should use two unbound textboxes (1 for continent and 1 for postagerate), and then on the onAfterUpdate event of the Country i will display the data according. However, what is the best method to populate these fields if my approach is fine? Can i achieve that with a DLookup Function?
TU
tblContinents, with ContinentID, Continent Fields
tblCountries with CountryID, Country, Continent, PostageRate
tblCustomer with CustomerID, Country, AddFields
Now on my main form where i enter the customers details i would like that as soon as i would enter the Country where he comes from, i would like to display the Continent and PostageRate associated with that country, because since i am already storing those pieces of information in the tblCountries, i do not see the need why i should store them again in the customers table.
I think that i should use two unbound textboxes (1 for continent and 1 for postagerate), and then on the onAfterUpdate event of the Country i will display the data according. However, what is the best method to populate these fields if my approach is fine? Can i achieve that with a DLookup Function?
TU