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]
 
Back
Top