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