LotusScript FileExists Function

The DominoPDF DoPDF() method returns 0 (zero) for a successful operation and -1 for an unsuccesful operation. So you can take the return value and test against this, for example; iRet = DoPDF(sURL, sPDF, sOptions)if iRet = -1 then Error = True You ...

iNotes Compatiblity For PDF Conversion

iNotes makes heavy use of framesets, iframes and javascript, which is not supported by DominoPDF. Therefore when using the URL interface of DominoPDF all URLs should have the &ui=webmail argument appended to the end. The &ui=webmail arg ...

iNotes Browser Compatibility For PDF COnversion

iNotes only works with certified browsers and will return a "Lotus iNotes has not been certified to work with this browser." error message if a browser is unrecognised. iNotes identifies a browser by its User-Agent and an accepted User-Agent can b ...

How to control Font Embedding In PDF Documents?

By default DominoPDF embeds fonts into the PDF. The NoEmbedFonts setting in the DoPDF() method allows you to specify which fonts are not embedded into the PDF and therefore referenced directly. Usage is as follows (and detailed in the help file ...

How Do I Add Page Numbers To PDF Document?

There are a couple of ways to add page numbers to PDF files generated from DominoPDF. 1. Use HTMLHeader or HTMLFooter settings. To add page numbering to a PDF you can control it via the settings option in the DoPDF() method. Call v.DoPDF(sUR ...