Put a label on the form, set it's font properties to UNDERLINE and set the FORECOLOR to blue (so it looks like a hyperlink) then put code in the ONCLICK method that is like this:
ShellExecute Handle, "OPEN", "http://www.evolutionsoftwarellc.com", "", "", SW_SHOW
at the top of the form (or module) you need to include this:
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
if it is a private module (like a form) you will need to put PRIVATE DECLARE FUNCTION instead of the PUBLIC DECLARE FUNCTION as show above.
Finally if you want to use the SW_SHOW instead of a number, put this at the top of the form:
' ShowWindow() Commands
Const SW_HIDE = 0
Const SW_SHOWNORMAL = 1
Const SW_NORMAL = 1
Const SW_SHOWMINIMIZED = 2
Const SW_SHOWMAXIMIZED = 3
Const SW_MAXIMIZE = 3
Const SW_SHOWNOACTIVATE = 4
Const SW_SHOW = 5
Const SW_MINIMIZE = 6
Const SW_SHOWMINNOACTIVE = 7
Const SW_SHOWNA = 8
Const SW_RESTORE = 9
Const SW_SHOWDEFAULT = 10
Const SW_MAX = 10
or pick and choose the ones you want.
Also it would be cool to change the mousepointer to the pointing hand.
Hope this helps.
Chi Happens