Closed Thread
Results 1 to 31 of 31

Making Password Protected PDFs using Excel Vba and PDFtk Tool

  1. #1
    Registered User
    Join Date
    02-28-2015
    Location
    Jaipur
    MS-Off Ver
    2007
    Posts
    6

    Post Making Password Protected PDFs using Excel Vba and PDFtk Tool

    I am using excel to process salary. I have one sheet for Salary Data and other Sheet for Salary Slip. I am using Vlookup function for making salary slips.

    Right Now, I change one value (on which vlookup is based) and it gives the numbers related to that salary slip. Then, I save that salary slip in other file with a password and mail it to others.

    Now I basically need VBA for printing salary slip to pdf file with a password. I will be giving the password for each employee which will remain same for all times. And if possible I can directly mail the file to employee email using excel.

    Can you help me with this.

    Thanks
    Mohit
    Last edited by mohit1806; 03-06-2015 at 03:34 AM.

  2. #2
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Password protected salary slips in pdf.

    Here are the steps:-

    1. Download PDF Creator here:-
    http://download.pdfforge.org/download/pdfcreator

    2. Install only PDF Creator with Compact Installation settings. Don't use Full installation as it would download other unnecessary parts.
    3. Open PDF Creater --> Profile settings. You have to go through all visible tabs and change many settings to make it automated.
    a) Goto AutoSave section and Enable Auto Save option and Specify a path as well for auto save.
    b) Goto Action Tab and Uncheck all the option. ( i.e. Open the Document and Open PDF files with PDF Architect.
    c) Goto PDF--> Security --> Set security parameters appropriately like setting passwords and other settings. Set a password for opening the File.

    4. Now use the following code in your excel file to print PDFs.

    HTML Code: 
    5. It will create the Password protected Printouts automatically to a pre specified location using PDF creator.

    I have tested it and its working for me.
    Last edited by Vikas_Gautam; 03-01-2015 at 03:53 AM.
    Regards,
    Vikas Gautam
    Excel-buzz.blogspot.com

    Excel is not a matter of Experience, its a matter of Application.

    Say Thanks, Click * Add Reputation

  3. #3
    Registered User
    Join Date
    02-28-2015
    Location
    Jaipur
    MS-Off Ver
    2007
    Posts
    6

    Re: Password protected salary slips in pdf.

    Thanks Vikas.

    But I want to have different passwords for different files and I have list of passwords in other excel file.
    Further while dwnloading pdf creator, chrome says malacious file.

    What to do?

  4. #4
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Password protected salary slips in pdf.

    yes.. It did says while I downloaded.
    You can Goto Downloads and Click on the appropriate link to get it downloaded.

    For the new password for different file, I think I have to rethink about it.
    It will take some time, I will catch you soon.

  5. #5
    Registered User
    Join Date
    02-28-2015
    Location
    Jaipur
    MS-Off Ver
    2007
    Posts
    6

    Re: Password protected salary slips in pdf.

    Is it possible to create different excel files instead of pdf files, but password protected.

    I actually need to mail those salary slips, but should be password protected.

  6. #6
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hi Mohit,
    Finally, I have succeeded in making a Protected PDF Code. Here are some steps:-

    1. Download Pdftk (PDF toolkit) from the link below and Install.
    Download PDF Toolkit

    Actually, PDF toolkit provides Command line interface to make password protect pdfs.

    2. Now Use the following code to Make Pdfs.

    HTML Code: 
    Change oPdf and Password Variable Accordingly.

    You should provide your password list and explain that how you would like to generate PDFs.

    I have tested it and its working for me.
    Last edited by Vikas_Gautam; 03-02-2015 at 03:09 AM.

  7. #7
    Registered User
    Join Date
    02-28-2015
    Location
    Jaipur
    MS-Off Ver
    2007
    Posts
    6

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Thanks Vikas. That was great. That worked for me too.
    Can you help me with more than one file to be saved in a click with different passwords.

    I have attached a dummy file.

    1st worksheet - salary sheet.
    2nd work sheet - salary slip - to be saved in pdf files.
    3rd work sheet - contains file name to be saved as and respective password.
    Attached Files Attached Files
    Last edited by mohit1806; 03-05-2015 at 01:18 PM.

  8. #8
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Password protected salary slips in pdf.

    I will be customizing the code as per your needs and let you know.

    Can you change the Thread Title to one I used in Post #6..?
    this way, this would help many others as well.

  9. #9
    Registered User
    Join Date
    02-28-2015
    Location
    Jaipur
    MS-Off Ver
    2007
    Posts
    6

    Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Is the thread got changed?
    If not pls tell how to change.
    Last edited by mohit1806; 03-06-2015 at 03:23 AM.

  10. #10
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Okay,
    Use the drop downs in the sheet1 and click the button to Generate Password protected salary slips.
    I have eliminated Msgbox. Instead I have used Status Bar to show the progress. That will definitely reduce your clicks.
    So keep an eye on the Left bottom.

    Here is the amended code:-
    HTML Code: 
    Check the attached file:-
    Last edited by Vikas_Gautam; 03-06-2015 at 05:13 AM.

  11. #11
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Here is the new code. Replace it with older one.

    HTML Code: 

  12. #12
    Registered User
    Join Date
    02-28-2015
    Location
    Jaipur
    MS-Off Ver
    2007
    Posts
    6

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Thanks a lot....

  13. #13
    Registered User
    Join Date
    05-09-2014
    Location
    Mumbai
    MS-Off Ver
    Excel 2013
    Posts
    1

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hello Mohit,

    Find attached Payroll Sample.xls. This may be of some help to you. I have written VBA code to generate payslips, create PDF with password protection (Pan Number will the password) and automatically email to the employees email id.

    Download and install PDFtk from https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/

    Password to open sample excel sheet : 2015may

    Let me know if you need further assistance.

    Regards,

    Srikanth
    Attached Files Attached Files
    Last edited by arusrikanth; 06-10-2015 at 08:39 AM.

  14. #14
    Registered User
    Join Date
    08-24-2015
    Location
    qatar
    MS-Off Ver
    2010
    Posts
    1

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    hi Vikas,
    Shell cmdStr, vbHide is giving me runtime error 53. I used "call shell("cmd /C" & cmdStr, vbHide)" and error 53 is gone but the password protected pdf file is not created. whenever i run the same command from the command prompt, it works fine. what do i have to do? please help. TIA

  15. #15
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hello rook!E,
    may be shell is not able to find pdftk.

    I searched and found that 53 error comes for file not found.

  16. #16
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Okay I found a potential solution here.
    try to copy the pdftk.exe from the system32 folder to a location say D:/pdftk.exe and use it in the code.
    http://www.mrexcel.com/forum/excel-q...not-found.html

    like this.
    Please Login or Register  to view this content.
    it should work.

  17. #17
    Valued Forum Contributor
    Join Date
    01-18-2007
    Location
    Georgia
    MS-Off Ver
    2010
    Posts
    4,434

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hi Vikas:

    Please refer to attached file.
    I am using your code to create password protected file.
    Its giving error at creating PDF.
    Please help resolve the issue....

    Let me know if you have any questions.
    Thanks.
    Attached Files Attached Files

  18. #18
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    rizmomin, you should know begger
    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  19. #19
    Registered User
    Join Date
    08-07-2013
    Location
    lodon
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Quote Originally Posted by Vikas_Gautam View Post
    Hi Mohit,
    Finally, I have succeeded in making a Protected PDF Code. Here are some steps:-

    1. Download Pdftk (PDF toolkit) from the link below and Install.
    Download PDF Toolkit

    Actually, PDF toolkit provides Command line interface to make password protect pdfs.

    2. Now Use the following code to Make Pdfs.

    HTML Code: 
    Change oPdf and Password Variable Accordingly.

    You should provide your password list and explain that how you would like to generate PDFs.

    I have tested it and its working for me.
    This is brilliant!
    Been looking for this for a long time
    Thank you!

  20. #20
    Registered User
    Join Date
    11-15-2016
    Location
    London
    MS-Off Ver
    2016
    Posts
    6

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hi Vikas

    can you help me one more time ?

    Many thanks to you...

  21. #21
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MSO Home and Business 2024
    Posts
    7,313

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Deleted original message.
    Last edited by bakerman2; 11-15-2016 at 04:21 AM. Reason: Complied to Rule 2 of Forum Rules
    Avoid using Select, Selection and Activate in your code. Use With ... End With instead.
    You can show your appreciation for those that have helped you by clicking the * at the bottom left of any of their posts.

  22. #22
    Registered User
    Join Date
    11-15-2016
    Location
    London
    MS-Off Ver
    2016
    Posts
    6

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    error.jpg
    Hi Vikas . i have an error. How can i solve it ?

  23. #23
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MSO Home and Business 2024
    Posts
    7,313

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    chien_bap

    Stick to the thread you created yourself. Old threads do not attrackt much response by other users.
    You can always link back to this thread when you think it's relevant to your question.

  24. #24
    Registered User
    Join Date
    04-19-2017
    Location
    USA
    MS-Off Ver
    EXCEL
    Posts
    4

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hi,

    I also recieve error 53 - file not found.
    Does someone know what is the solution?

    Thanks.

  25. #25
    Registered User
    Join Date
    11-29-2018
    Location
    chennai
    MS-Off Ver
    2007
    Posts
    3

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Thanks a lot vikas ji., How to set password to existing pdf? using pdftk.. i don't have any idea.. can you help me?....

  26. #26
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,540

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  27. #27
    Registered User
    Join Date
    11-29-2018
    Location
    chennai
    MS-Off Ver
    2007
    Posts
    3

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Dear Admin,

    Thanks for the post, and apologies for that.

    Regards
    vinodhan

  28. #28
    Registered User
    Join Date
    04-23-2021
    Location
    Indonesia
    MS-Off Ver
    2010
    Posts
    1

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Hi Vikas,
    Kill Replace(fTemp, """", "") is giving me runtime error 53 and the password protected pdf file is not created.
    what do i have to do? please help.
    Thanks in advance

  29. #29
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Quote Originally Posted by nyemoooot View Post
    Hi Vikas,
    Kill Replace(fTemp, """", "") is giving me runtime error 53 and the password protected pdf file is not created.
    what do i have to do? please help.
    Thanks in advance
    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread

  30. #30
    Registered User
    Join Date
    06-13-2021
    Location
    India
    MS-Off Ver
    Office 365
    Posts
    1

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Dear Member,

    Greetings of the Day.

    I have reviewed the sample files and found very useful.

    can we change the color of boxy text and font size.

    for example, Dear Employee

    like this.

    Please help me.

    Thanks and Regards.

    Sunil Mehta

  31. #31
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,540

    Re: Making Password Protected PDFs using Excel Vba and PDFtk Tool

    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 05-19-2014, 10:02 PM
  2. Replies: 0
    Last Post: 09-06-2005, 10:05 AM
  3. Replies: 0
    Last Post: 09-05-2005, 11:05 PM
  4. Replies: 0
    Last Post: 09-05-2005, 10:05 PM
  5. Replies: 1
    Last Post: 06-23-2005, 08:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1