Forms in a Listbox

  • Thread starter Thread starter SeRene
  • Start date Start date
Hi,

How can i list out all the forms in my database on a
listbox?

Thanks!
Set the Row Source Type property of the List Box to:
Table/Query
Set the Row Source to:
SELECT MSysObjects.Name, MSysObjects.Type FROM MSysObjects WHERE
(((MSysObjects.Type)=-32768)) ORDER BY MSysObjects.Name;
 
Back
Top