how to activate features of drop down menu to a sub menu?

S

Sandra

I am creating a form with options on a drop down menu. i.e. language: Spanish
Dialect: Mexican I might have several languages, when the person selects
the language then I would like the sub titles to that particular language to
appear.

Thanks
 
B

Barry Gilbert

The combobox doesn't support hierarchical data. However, you could have one
combobox for languages and a second for dialects. The rowsource property of
the second combobox would be something like:
SELECT Dialects FROM tblDialects WHERE tblDialects.Language = cboLanguages

HTH,
Barry
 

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

Top