Can anyone tell me if it is possible to scan through a macro in Access 97 to search for a string?

I can get enumerate through the collection of saved macros in a given AccessDb as in the following:

dim doc as document
for each doc in currentdb.containers("scripts").documents
debug.print doc.name
next

However I am trying to scan though each line of the macro to search for a string.

Can anyone help???????