So real newbie at coding. Have a form with field Hyperlink
Trying to get a button to launch said hyperlink but keep getting a runtime 8 error. Here's my code for the click button.

Code:
Private Sub Toggle40_Click()
    Dim strInput As String
    strInput = Screen.ActiveForm![Hyperlink]
    Application.FollowHyperlink strInput

End Sub