Address A string expression that evaluates to a valid hyperlink address.
SubAddress A string expression that evaluates to a named location in the document specified by the address argument. The default is a zero-length string (" ").
NewWindow A Boolean value where True (-1) opens the document in a new window and False (0) opens the document in the current window. The default is False.
AddHistory A Boolean value where True adds the hyperlink to the History folder and False doesn't add the hyperlink to the History folder. The default is True.
ExtraInfo A string or an array of Byte data that specifies additional information for navigating to a hyperlink. For example, this argument may be used to specify a search parameter for an .asp or .idc file. In your Web browser, the extrainfo argument may appear after the hyperlink address, separated from the address by a question mark (?). You don't need to include the question mark when you specify the extrainfo argument.
Method A MsoExtraInfoMethod constant that specifies how the extrainfo argument is attached.
HeaderInfo A string that specifies header information. By default the headerinfo argument is a zero-length string.
In this example we can open a link to a webpage.
The result is the page opening given it's address.
VBA
You could add this to a button click event, then you could add the following in the Click Event.
Application.FollowHyperlink strInput, , True
Where strInput could be a Field on a Form.
Course(s)
Want to learn more? Request this via the contact form.