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;
 
Better yet, Bill. Thanks.

Bill Edwards said:
You could create a report and set it's recordsource to:

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

smk23 said:
Is there a way to print a list of all forms in an app?

Thanks!
 

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