Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub ListMods()
Dim db As Database
Dim ModDoc As Document
Dim ModN As Module
Set db = CurrentDb
For Each ModDoc In db.Containers!Modules.Documents
DoCmd.OpenModule ModDoc.Name
Next
For Each ModN In Modules
Debug.Print ""
Debug.Print "Module " & ModN.Name
Debug.Print ModN.Lines(1, ModN.CountOfLines)
Next
End Sub