print list of forms

  • Thread starter Thread starter Guest
  • Start date Start date
You can use the following to print them to the Debug window (Ctrl-G):

Dim db As Database
Dim con As Container
Dim doc As Document

Set db = CurrentDb()
Set con = db.Containers("Forms")

For Each doc In con.Documents
Debug.Print doc.Name
Next doc

Sprinks
 
You could create a report and set it's recordsource to:

SELECT [Name] FROM MSysObjects WHERE [Type]= -32768;
 
Back
Top