optain a list available forms

H

Henry

how can I optain a list of available form names. the form object would only
let me access open forms....................
 
D

Douglas J. Steele

Simplest way is to use the following SQL in a query:

SELECT [Name]
FROM MSysObjects
WHERE [Type]=-32768
ORDER BY [Name]
 
Top