Printing to a range of printers

  • Thread starter Thread starter DubboPete
  • Start date Start date
D

DubboPete

I want to be able to send the same report to three or more network
printers, but not sure of the code to do so. Any clues anyone? There
doesn't seem to be a whole lot of info on the archives...
 
Thanks Allen,

Not quite what I had in mind. What I was aiming for was a report to
print at three or more locations from one click of a button, with the
destination printer embedded in the code where it would trigger as part
of a 'docmd.openreport...' situation.

It's for an emergency situation, where a list of visitors would be
printed out for each of the fire officers, in the event of evacuation
of the building.

As you would appreciate, speed is paramount for this, so I didn't want
to clog it up with selecting printers for each instance of the report.

is that clearer?

Pete
 
Did you try this kind of thing in the button's Click event:

Dim strDoc As String
strDoc = "Report1"
Set Printer = Printers(0)
DoCmd.OpenReport strDoc
Set Printer = Printers(1)
DoCmd.OpenReport strDoc
Set Printer = Printers(2)
DoCmd.OpenReport strDoc
Set Printer = Nothing
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top