G
Guest
I am trying to use the Hyperlink Function to open a hyperlink in a field that
will allow users to specify what that hyperlink is. For fixed hyperlinks I
am successfully using the following:
Dim ctl As CommandButton
Set ctl = Me!SeeBlankTemplate
With ctl
.Visible = False
.HyperlinkAddress = "\\ibr2fodnjohnson\c$\shared files\Closeout Cover
Sample.doc"
.Hyperlink.Follow
End With
How do I state .HyperlinkAddress in a case where this varies?
will allow users to specify what that hyperlink is. For fixed hyperlinks I
am successfully using the following:
Dim ctl As CommandButton
Set ctl = Me!SeeBlankTemplate
With ctl
.Visible = False
.HyperlinkAddress = "\\ibr2fodnjohnson\c$\shared files\Closeout Cover
Sample.doc"
.Hyperlink.Follow
End With
How do I state .HyperlinkAddress in a case where this varies?