Well, to the original poster -- say hello to Windows API programming. Mouahahahaha!
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
Put that in a general module, and then you can call on ShellExecute, like for instance:
ShellExecute frmMain.hwnd, "Open", "http://www.google.com/, "", _
"", SW_MINIMIZE
This opens your web browser to the Google site.
-----
They SAID that given enough time a million monkeys with typewriters could recreate the collected works of William Shakespeare... Internet sure proved them wrong.
-----