|
First, we create an ABCpdf Doc object and read our source
document. We store the number of pages we're going to delete -
we're going to delete all but one.
Set theDoc = Server.CreateObject("ABCpdf13.Doc")
theDoc.Read "c:\mypics\sample.pdf"
theCount = theDoc.PageCount - 1
|