I know there are a few people using the iSed PDF library here, so hopefully someone can help. The "official" web site is down during a migration from Access to SQL, otherwise I would have tried there first. And yes, I have RTM 
Anyway, I am really loving this library now that I've gotten used to it. However, I want to send a document to the printer directly rather than bringing it up in Acrobat (skipping the 'preview' part). The document prints, at least it spits out blank pages. Therefore, I am relatively certain I am passing the printer name properly (since the various printers I've tested with all print out the correct number of pages....just blank
) and since the number of pages is correct, I believe I have those parameters correct as well.
Here are the lines of code I'm using:
iRet& returns 1 which the docs indicate everything printed properly.
If I don't try to print directly, the document is created perfectly. I can save it to a file and even bring it up right away in acrobat with:
but when it goes to the printer directly, the pages are all blank.
Anyone have any ideas?
TIA

Anyway, I am really loving this library now that I've gotten used to it. However, I want to send a document to the printer directly rather than bringing it up in Acrobat (skipping the 'preview' part). The document prints, at least it spits out blank pages. Therefore, I am relatively certain I am passing the printer name properly (since the various printers I've tested with all print out the correct number of pages....just blank

Here are the lines of code I'm using:
Code:
x& = iSedPageCount o& = iSedPrintOptions(0,0,"Test") iRet& = iSedPrintDocument(BYCOPY SendTo, 1, x&, o&)
If I don't try to print directly, the document is created perfectly. I can save it to a file and even bring it up right away in acrobat with:
Code:
CALL iSedSaveToFile(BYCOPY mFilename$) zText = mFileName$ SHELLEXECUTE BYVAL %NULL, "open", zText, BYVAL %NULL, BYVAL %NULL,1
Anyone have any ideas?
TIA
Comment