How to Display List of Tables in a Combo Box

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

Guest

I want a combo box to display a list of tables beginning with "src".

Any suggestions?
 
Set the RowSource to:

SELECT [Name] FROM MSysObjects WHERE [Name] Like "src*" ORDER BY [Name]
 
Thanks, Doug! I appreciate all the help you have given me on these forums
over the past two years.

Douglas J. Steele said:
Set the RowSource to:

SELECT [Name] FROM MSysObjects WHERE [Name] Like "src*" ORDER BY [Name]


--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


DevDaniel said:
I want a combo box to display a list of tables beginning with "src".

Any suggestions?
 

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