Populate combo with list of form names

TUSSFC

Registered User.
Local time
Today, 14:17
Joined
Apr 12, 2007
Messages
57
I'd like to populate a combo with a list of all the form names in my database. Can anyone help?

TIA
 
Ah, easier than I realised. Just needed to create a query:

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=-32768))
ORDER BY MSysObjects.Name;
 

Users who are viewing this thread

Back
Top Bottom