• Printing out a list of Modules?

    From Peter Jason@pj@jostle.com to comp.databases.ms-access on Sun Aug 8 09:37:00 2021
    From Newsgroup: comp.databases.ms-sqlserv

    MSoft 365

    I need to compare all current Modules with those of a past backup.

    Can Access do this?

    P
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Ron Weiner@rw@domain.com to comp.databases.ms-access on Sat Aug 7 20:03:45 2021
    From Newsgroup: comp.databases.ms-sqlserv

    After serious thinking Peter Jason wrote :
    MSoft 365

    I need to compare all current Modules with those of a past backup.

    Can Access do this?

    P

    Here is some code to list all of the modules in the current Database.
    I havent got MSoft 365 to test with, but works fine in the older non
    cloud versions.

    Dim mod As Variant

    For Each mod In CurrentProject.AllModules
    Debug.Print mod.Name
    Next

    You could create a Table and insert the names one at a time in there,
    and then slice and dice anyway you like.

    Rdub
    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From orange@jackandpat.d@gmail.com to comp.databases.ms-access on Sat Aug 7 17:42:37 2021
    From Newsgroup: comp.databases.ms-sqlserv

    Do you mean module names, or do you want to list module lines?

    --- Synchronet 3.21d-Linux NewsLink 1.2
  • From Peter Jason@pj@jostle.com to comp.databases.ms-access on Sun Aug 8 11:18:54 2021
    From Newsgroup: comp.databases.ms-sqlserv

    Thanks to all. I have since found what I want in MSoft365....

    Database Tools/Database Documenter /

    This lists, & can print them all.

    Regards, P
    --- Synchronet 3.21d-Linux NewsLink 1.2