Posted by a ceTe Software moderator
Hello,
There is nothing in our product which can find if the PDF is corrupt. If you get the error in the Draw method of the document which has several PDFs merged in it then it is not possible to find which PDF has thrown the error.
You may have to try using the Error handling concepts in VbScript. There are basically just two options to handle errors:
On Error Goto 0 (the default)
This causes execution to break when an error happens and show an error message.
On Error Resume Next
This causes the script to continue execution starting with the next line after the error.
Thanks,
ceTe Software Support Team.