Forum Discussion
Jon_Morgan1958
Jul 16, 2021Copper Contributor
Image field with hyperlink
Newbie Question. Simple Table "Supplier" "SupplierLogo" "SupplierURL" On a form when the logo field is selected to follow the URL. How please? I seem to be going round in circles Many than...
- Jul 17, 2021You're welcome. Perhaps you could mark my last response as the solution / best answer
isladogs
Jul 16, 2021MVP
Use Application.FollowHyperlink "SupplierURL" where SupplierURL gives the full URL path
e.g. Application.FollowHyperlink "http://www.mendipdatasystems.co.uk"
e.g. Application.FollowHyperlink "http://www.mendipdatasystems.co.uk"
- Jon_Morgan1958Jul 16, 2021Copper ContributorSomething like above?
- isladogsJul 16, 2021MVPYes
- Jon_Morgan1958Jul 16, 2021Copper ContributorThanks, now supposing I want to use a hyperlink field from my query, what would be the syntax please?
- Jon_Morgan1958Jul 16, 2021Copper ContributorThank you. Something like:
Private Sub Logo_Click()
Application.FollowHyperlink "URL"
End Sub?