No I just set a report to a specific printer like so.<br>
Do you want a report to goto a specific printer?<br>
If so then open the report in design view<br>
Click "File" menu then "Page Setup"<br>
Click "Page" Tab<br>
Click "Use Specific Printer" check box and pick th eprinter <br>
Then Click "File" "Save"<br>
Each time the report is opened it will go to that printer whether by VBA code or manually.<br>
Now if you need to print the same report to 2 different printers at the same time you need 2 reports. both setup as shown above. and 2 lines in VBA.<br>
<br>
heres an example of our reports<br>
-------------------------------------------<br>
ElseIf ORDERType = "R" Then<br>
' RETURNED GOODS EVALUATION<br>
DoCmd.OpenReport "rpt-Returned Goods", acViewNormal<br>
DoEvents<br>
DoCmd.OpenReport "rpt-RepairEST", acViewNormal<br>
DoEvents<br>
DoCmd.OpenReport "rpt-Credit Return", acViewNormal<br>
DoEvents<br>
DoCmd.OpenReport "rpt-Returned Goods-Oki Printer", acViewNormal<br>
DoEvents<br>
DoCmd.OpenReport "rpt-RepairEST_2", acViewNormal 'acPreview<br>
DoEvents<br>
<br>
---------------------------------------------------------<br>
so we just go to each printer an grab the reports and it saves tremendous time.<br>
<br>