optain a list available forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how can I optain a list of available form names. the form object would only
let me access open forms....................
 
Simplest way is to use the following SQL in a query:

SELECT [Name]
FROM MSysObjects
WHERE [Type]=-32768
ORDER BY [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

Back
Top