Marshall Barton replied to Help with Multi Catalog
21-Nov-09 09:45 AM
I know nothing about what may or may not happen when a
printer is "offline", but your example left out a very
important bit of information. If you are opening the same
report in both lines, e.g.
DoCmd.OpenReport "reportA", ...
DoCmd.OpenReport "reportA", ...
then that has always been unlikly to run as you might
expect. If the first one is still running when the the
second one executes (very likely), the second one will just
interfere with the first one, sometimes switching the where
condition in mid steam.
If you are opening two different reports, e.g.
DoCmd.OpenReport "reportA", ...
DoCmd.OpenReport "reportB", ...
Then I could only guess that the problem would be more
closely related to the print spooler than the printer's
status.
--
Marsh
MVP [MS Access]