This content has been marked as final.
Show 1 reply
-
1. Re: How to print multiple documents from script using AcroRd32.exe
tcAtlanta Jul 11, 2009 8:03 AM (in response to tcAtlanta)I found the answer. You need to remove the "true" . Someone in another forum explained it to me:
'true' as the last param to 'run' tells run to wait until
the program exits. This is why you have to manually quit
the first instance.
I changed
oWsh.run "AcroRd32.exe /p " & filename,,true
to
oWsh.run "AcroRd32.exe /p " & filename
and it worked fine.
