Quick way to print all reports

  • Thread starter Thread starter Gordzilla
  • Start date Start date
G

Gordzilla

Is there an easy way to print all Access reports at once. The database I
have has over 200 individual reports defined. Is there an easy way to print
them all at once?
 
I don't thant you can do it with naming all the report
names within a maco of VB programming.

in VB:

DoCmd.OpenReport "Report1", acNormal
DoCmd.OpenReport "Report2", acNormal
DoCmd.OpenReport "Report3", acNormal
DoCmd.OpenReport "Report4", acNormal
etc....

You can include the list of report names in a table and
have the VB coding run of that table

Kevin11
 
Back
Top