When trying to open a spreadsheet document (for example, MS Excel) in OpenOffice that contains embedded data or external links a dialog is displayed prompting whether the links should be updated. This file contains links to other files. Should they ...
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 ...
Lotus iNotes has not been certified to work with this browser
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 ...
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 ...
How do I pass Domain details for NTLM Authentication?
- Pass a blank WebUsername and/or WebPassword and the current user credentials will be used (logon details from user machine). - Pass WebUsername and WebPassword and the MachineName\WebUsername credentials will be used (MachineName from user machine ...
How do I know what Authentication method my server is using?
DominoPDF supports Basic HTTP Authentication and NTLM Authentication depending on which headers the web server returns. By using the WebUsername and WebPassword attributes DominoPDF will pass authentication details as appropriate if the authentica ...
How do I force / control page breaks in DominoPDF?
DominoPDF supports page breaks via the CSS page-break-before/inside/after styles. You can either use style-sheets in your Notes document design, for example; <style type="text/css"><!--.break {page-break-after: always}--></style>O ...
