SQL Server & Hyperlinks

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

have an Access 2000 database which has been upsized to SQL Server. In the
database there are various tables with Hyperlinks to Documents, This is not
supported in SQL Server how can we recreate the links?


Thanks in advance
 
Store the URL in a nvarchar field, and either set the IsHyperlink property
of the form control bound to the field to Yes, or use the FollowHyperlink
method in code, e.g. ...

Private Sub TestURL_DblClick(Cancel As Integer)

Application.FollowHyperlink Me.TestURL

End Sub
 

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

Back
Top