
Second Post - (First Post is Gone) - Please Help!!
What version of Access are you using? I don't know about Access 7 or 8 (
which use VBA ), but Access 2 ( using Access Basic ) does not have a For
Each expression. You will have to translate that into something like the
following:
For x from 0 to ctr.Documents.Count - 1
Set doc = ctr.Documents(x)
...