Hyperlinks

  • Thread starter Thread starter CS
  • Start date Start date
C

CS

One of the fields in my database is for creating
hyperlinks to PDF documents pertaining to the record. The
problem is there could be several revs of the document or
even additional non-PDF docs. I don't think more fields is
the answer but how can I allow for the additional
hyperlinks on a form?
 
CS said:
One of the fields in my database is for creating
hyperlinks to PDF documents pertaining to the record. The
problem is there could be several revs of the document or
even additional non-PDF docs. I don't think more fields is
the answer but how can I allow for the additional
hyperlinks on a form?

If there are multiple documents related to the current record, it makes
sense to have a related table to store them in. Then you could present
them in a subform or list box. If you use a list box, you may want to
use something like

Application.FollowHyperlink Me!lstDocuments

to actually open the document when a list item is clicked.
 
Back
Top