How can I retrieve a list of all forms in a MS-Access database?
To retrieve a list of all tables I use this:
For Each TDef In CurrentDb.TableDefs
If Left(TDef.Name, 4) <> "MSys" And Left(TDef.Name, 7) <> "~TMPCLP" Then
Debug.Print TDef.Name
End If
Next
Also see this issue.
But I can't do this for forms.
Dim frm As AccessObject
to make it run – Sloppy