but I am not sure where you're going with the project so I will post anyway.
You'll want to insert a Standard Module and paste in this code
Be sure to change the url line to the address of your choosing.
Option Explicit
Public Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hwnd As Long, _
ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lpParameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
Public Const SW_SHOWNORMAL = 1
'change URL here
Public Const Site1 As String = "http://www.vbaexpress.com/forum"
Sub myURL()
ShellExecute 0, "open", Site1 & vbNullChar, vbNullString, _
vbNullString, SW_SHOWNORMAL
End Sub
Next, we want to make sure that the Userform is ready so put these couple of lines in the image_click:
Private Sub image1_Click()
Call myURL
End Sub
That should do it for ya!!
X