speakers_86
Registered User.
- Local time
- Today, 07:11
- Joined
- May 17, 2007
- Messages
- 1,912
I haven't used error handling nor message boxes nearly enough, so I'm stumped at this. I'm not sure what the =vbOK is for, but access said it expected an equal sign, so I gave it one.
Code:
On Error GoTo Err_A
Application.FollowHyperlink "long complicated website here"
Exit Sub
Err_A:
Msgbox("Could not go to long complicated website here", vbOKOnly, "Error") = vbOK
End Sub