Hello
As you may have guessed I'm wondering how I can link a PDF to a button.
Thanks for any help!
Hello
As you may have guessed I'm wondering how I can link a PDF to a button.
Thanks for any help!
Is this a PDF per record?
Is this a single PDF saved in the same folder as the database.
Is the PDF already created?
Code:Sub Command1_Click() Application.FollowHyperlink CurrentProject.Path & "filename.pdf" End Sub
Just a signle PDF Document I would like to have linked within the database, What the PDF is, is just a training manual on how to navigate through the database
Just put the PDF in the same folder as the database
Change "filename.pdf" to your filename.
Add a button to a form and add the above code.
If the file is in another folder just change it to
With your file path and name.Code:Application.FollowHyperlink "c:\path\folder\filename.pdf"
Okay thank you!