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;
 
Back
Top