NearImpossible
Registered User.
- Local time
- Today, 12:17
- Joined
- Jul 12, 2019
- Messages
- 225
I have a couple fields in my database that are clickable links, were the URL is entered into a different field and the link references that field.
URLField - Where the URL is entered
LinkField - Field that is clicked to open the URL
This has been working and launches the URL, but for whatever reason, now whenever I click the Link field, it does nothing and Access just goes Not Responding.
Is anyone else having this issue or having any suggestions to try??
URLField - Where the URL is entered
LinkField - Field that is clicked to open the URL
Code:
Private Sub LinkField_Click
Application.FollowHyperlink me.URLField
End Sub
This has been working and launches the URL, but for whatever reason, now whenever I click the Link field, it does nothing and Access just goes Not Responding.
Is anyone else having this issue or having any suggestions to try??