How can I generate items in a drop down menu dynamically?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We are developing an application in which we want to dynamically populate the
entries in a drop down menu using data in a table. Has anyone done this?
 
We are developing an application in which we want to dynamically populate the
entries in a drop down menu using data in a table. Has anyone done this?

You would set the Combo Box's Rowsource to a query.
For example:
Select YourTable.[Department] from YourTable Order By [Department];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top