|
Question : Dynamic queries using combo boxes
|
|
I'm currently trying to make a database, and have the interface written in VBA.
On this current page you choose a country, and it allows you to choose all provinces in that country. What I'm trying to do is when you click on the country drop-down, the province drop-down will query. I tried to do this through the RowSource, and controlSource, though neither seem to work, even if I call a requery. What can I do to display the proper information in this combo box?
Thanks Eric
|
|
Answer : Dynamic queries using combo boxes
|
|
You can set the combo to do that by using the line: Me!MyComboBox = Me!MyComboBox.Column(Me!MyComboBox.BoundColumn-1,0)
|
|
|
|