Forms in a Listbox

  • Thread starter Thread starter SeRene
  • Start date Start date
S

SeRene

Hi,

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

Thanks!
 
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;
 

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

Access Cannot select items in listbox 1
Requery listbox 1
if all items in listbox are the same 5
Search Listbox vs Table Query 1
ListBox help 1
Bookmark Listbox 4
Print values of a listbox 2
Listbox to control listbox 9

Back
Top