How to open multiple instances of a report (1 Viewer)

snoopy22

Registered User.
Local time
Today, 15:15
Joined
Oct 1, 2004
Messages
45
Hi everyone.

I'm kind of a novice in VBA so have mercy :D
My problem is this: I've got one report that needs to be open multiple
times, each time for different person. In other words i think i need to
create multiple instances of this report.

this is my current code

(Imagine i've got a loop that repeat this code for each person)
Code:
 DoCmd.OpenReport "rptTransaction", acViewPreview

right now, only one report is opening (for the first person), I've done some tracking to isolate the problem, and i've found that if the current report is alreadyopen, then it igonres my request to open it again for the second person and so on...
what should i do?

Ofir
 

uncle-lai

Registered User.
Local time
Today, 15:15
Joined
Aug 8, 2003
Messages
98
Just curious. Why do you want to open multiple instance of a report instead of putting all records in one report with each person's record on a new page?
 

Users who are viewing this thread

Top Bottom