Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening Adobe PDF using Microsoft Access 2003

Status
Not open for further replies.

rixter67

MIS
Sep 18, 2001
28
0
0
US
I need a little help here. I have an Access 2003 database and and external folder with several PDF files in it. I want to be able to open the PDF file from a link to a particular Access file. For example: I have check request number in Access, the PDF files are not in the database. I need to get the certain request number linked to the PDF request.

Any suggestions are appreciated. TIA
 
Assuming that you want the user to type a check request number into a form and have it automatically become a hyperlink to a pdf doc of the same name...

then

the code on a form event of your choice...

me.chk_request_num=CStr(me.chk_request_num)+"#File:c:\my_path\"+CStr(me.chk_request_num)+".pdf#"

...be sure that chk_requst_num field's data type is set to hyperlink in the table in which the form field is bound.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top