populate Listbox with list of all Report in db

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

Hello,

How can I populate a listbox with a listing of all the reports in the db
in an alphabetical order?

Thank you for the help,

Daniel
 
Hello,

How can I populate a listbox with a listing of all the reports in the db
in an alphabetical order?

Thank you for the help,

Daniel

SELECT MSysObjects.Name FROM MSysObjects WHERE
(((Left([Name],1))<>"~") AND ((MSysObjects.Type)=-32764)) ORDER BY
MSysObjects.Name;
 

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

Similar Threads

List Box won't refresh 2
Pulling data from a Listbox to a table. 3
populating my listbox 1
Select record in a listbox 8
needing help with loop issues 1
Listbox order 4
Populate Listbox 3
ListBox 2

Back
Top