Hi,
You can use a workaround.
Put some text in the label and format it to 'look like' a Hyperlink i.e.
blue, underlined and in an appropriate font.
Right click the label and view code and paste the code below in.
The down side is that when you hover over the link you don't get the hand
symbol but if you Google for one you should find a custom cursor and you can
then select custom-cursor(15) from the label dialogbox and your done.
Private Sub Label1_Click()
Link =
"
http://www.microsoft.com/office/com...rosoft.public.excel.programming&lang=en&cr=US"
On Error GoTo TheEnd
ActiveWorkbook.FollowHyperlink Address:=Link, NewWindow:=True
Unload Me
Exit Sub
TheEnd:
MsgBox "Cannot open Hyperlink"
End Sub
Mike