Hyperlink

A

Andria

Hello,

I have a field in a datasheet form. I want the user to be
able to put a hyperlink attachments. Attachments are all
in one folder that is common to alla users. So when
another user login to the system to be able to click on
that hyperlink and open the specific attachment

Than you in advance!!
Andria
 
A

Arvin Meyer

You can define the field in the table as a hyperlink datatype and carry the
property attributes to the forms. You can also use a plain text field and
use the double-click event of the form's text box to follow the hyperlink
with code like:

Private Sub txtHyperLink_DblClick(Cancel As Integer)
Application.FollowHyperlink HyperlinkPart(Me.txtHyperLink, acAddress)
End Sub
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

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

Top