Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I would like to generate password-protected PDF using Excel 2003 VBA. It can't be manually done using Acrobat Professional becuase I have to do it a hundred times everyday, and each PDF would have a different password. My computer has been installed an Acrobat Professional 8. Anyone knows how to do this? Thanks. Cyrus |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you download and install the free PrimoPDF then you can do things like
this: Sub test() Sheets(1).Activate Application.ActivePrinter = "PrimoPDF on Ne04:" ActiveWindow.SelectedSheets.PrintOut _ Copies:=1, _ PrintToFile:=True, _ PrToFileName:="C:\mytest.pdf" End Sub Not sure about the password. RBS "man" wrote in message ... Hi all, I would like to generate password-protected PDF using Excel 2003 VBA. It can't be manually done using Acrobat Professional becuase I have to do it a hundred times everyday, and each PDF would have a different password. My computer has been installed an Acrobat Professional 8. Anyone knows how to do this? Thanks. Cyrus |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to retrive password protected worksheet but forgot password? | Excel Worksheet Functions | |||
Generating Hex key/password | Excel Programming | |||
how to automate opening a password protected excel file? e.g. a .xls that has a password set in the security tab. | Excel Worksheet Functions | |||
bypass password when update linking of password protected file | Excel Discussion (Misc queries) | |||
VBa, Password protected sheet fails to get unprotected with the same password | Excel Programming |