Can anyone tell me how to Hyperlink in Access?

C

Christene

On new layout of Access I can not figure out how to hyperlink a scanned form
onto our data base. Can anyone help me Please?
 
W

Wayne-I-M

Hi

What are you trying to do?
Do you want the scanned Doc to show up in a form or report
Do you want to go to the Doc OnClick

Can you give more details of what you are trying to do
 
A

Arvin Meyer [MVP]

The code would read:

Private Sub Form_Current()
On Error GoTo Error_Handler

Me.txtPath.HyperlinkAddress = Me.txtPath

Exit_Here:
Exit Sub

Error_Handler:
Resume Exit_Here

End Sub

Where txtPath is the path to the file. Clicking on txtPath will open the
file.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top