View Single Post
  #3  
Old April 17th, 2010, 03:38 AM posted to microsoft.public.access.gettingstarted
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default Can anyone tell me how to Hyperlink in Access?

The code would read:

Private Sub Form_Current()
On Error GoTo Error_Handler

Me.txtPath.HyperlinkAddress = Me.txtPath

Exit_He
Exit Sub

Error_Handler:
Resume Exit_Here

End Sub

Where txtPath is the path to the file. Clicking on txtPath will open the
file.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.accessmvp.com
http://www.mvps.org/access


"Christene" wrote in message
...
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?