Display queries in listbox

  • Thread starter Thread starter little_rascals
  • Start date Start date
L

little_rascals

Hi, I need to make use of a listbox to display ALL the queries in m
database. Is there any way i can do this??

Another scenario is.. i need to know how to display only the queries
want, to appear in the listbox.

Thank You
 
Populate the list box in the code. Just open a recordset
of the Currentdb.QueryDefs. Then you can build a string
with the name property of each query, separated by
semicolon. The assign the string to the RowSource of the
list box. j.
 
Back
Top