> I have code that loops through some statements, previewing the same
> report each time through. After the first report previews and I close
> it, the loop seems to end and will not prewiew the remaining pages.
> It seems as if I need to be trapping some event or somewhere within
> the code to pause it. Any ideas?
Are you also closing the report in the loop? Unlike a form, a report that is
already opened will not be refreshed if you issue another Open method on it. It
will just continue to display what was already there.

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Jim Pockmire - 18 Mar 2005 19:13 GMT
I was not closing the report in the loop, only on the toolbar. I am guessing
that I need to do this with a DoCmd.Close (object)
>> I have code that loops through some statements, previewing the same
>> report each time through. After the first report previews and I close
[quoted text clipped - 5 lines]
> is already opened will not be refreshed if you issue another Open method
> on it. It will just continue to display what was already there.