Print Page | Close Window

cls_Print_PDF

Printed From: www.exp-systems.com
Category: PDF reDirect
Forum Name: Programming
Forum Discription: VBA and Batch Tools to control PDF reDirect Pro
URL: http://www.exp-systems.com/Forum_exp/forum_posts.asp?TID=265
Printed Date: 20 Apr 24 at 4:36AM


Topic: cls_Print_PDF
Posted By: jordialou
Subject: cls_Print_PDF
Date Posted: 09 Oct 06 at 7:24AM

Hi

Anybody can say me how can i specify all the permissions in a class for vb 6.0?

Thanks a lot




Replies:
Posted By: Michel_K17
Date Posted: 10 Oct 06 at 12:59AM
Hi there,

   The class is no longer supported , and does not support setting permissions. However, I have replaced the class with a new ActiveX component that is much more capable and complete. In it, you will fing the following properties and methods which will do what you are asking for:

   ' Settings to Lock a PDF
   '-----------------------

   .Settings_Locked = False ' Set to "True" to Lock the PDF and apply the restrictions
       
   .Settings_Lock_Do_Not_Allow_Printing = True ' Set to "False" to allow printing
   .Settings_Lock_Do_Not_Allow_Copy_and_Paste = True    ' Set to "False" to allow Copy-and-Paste
   .Settings_Lock_Do_Not_Allow_Making_Changes = True ' Set to "False" to allow Making Changes
   .Settings_Lock_Do_Not_Allow_Adding_Notes = True ' Set to "False" to allow Adding Notes
       
   .Settings_Master_Password = "Master" ' Master Password used for locking a PDF.

   This new ActiveX component requires that you have the latest "beta" version installed which is available [ http://www.exp-systems.com/forum_exp/forum_posts.asp?TID=51&PN=1&FID=10&PR=3 - here ].

   All of the latest details about the ActiveX component is available [ http://www.exp-systems.com/forum_exp/forum_posts.asp?TID=254&PN=1 - here ].

   I hope that helps!

-------------
Michel Korwin-Szymanowski
EXP Systems LLC



Print Page | Close Window