|
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("ABCpdf6.Doc")
theDoc.Read "c:\mypics\sample.pdf"
theCount = theDoc.PageCount - 1
|