Disable Printing in PDFInclude

Hi guys, I have situation here using PDFInclude.

The report should be able to be viewed by the users but should not be printable.

Is this possible with PDFInclude?

Please Help,
redskienz.


Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Disable Printing in PDFInclude

Look at the pdf_Encrypt procedure, you can pass an "access list". The Access list can be ‘blank’ or a comma-delimited list of access prevention rights. If ‘blank’, the document has full access rights (default). If ‘non-blank’, then only specific items will be allowed when the document is viewed. The following outlines the valid entries for the comma-delimited list:
Code Description
noprint Prevent Printing of the File
nohiresprint Prevent High Resolution Printing
nomodify Prevent Adding Form Fields & Other Changes
nocopy Prevent Copying and Extracting Text or Graphics
noannots Prevent Adding or Changing Comments or Form Fields
noforms Prevent Filling of Form Fields
noaccessible Prevent Extraction of Text or Graphics
noassemble Prevent Inserting/Deleting/Rotating Page, Bookmarks

Hope this helps,
Bill