You are so helpful.I try it,but it doesn't work on my machine.I know it
works when I use win98 or Win200.
Maybe we should mind a new method with WinXP.Have you ever tried it in a
WinXP System.
Private 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
' Open the default browser on a given URL
' Returns True if successful, False otherwise
Public Function OpenBrowser(ByVal URL As String) As Boolean
Dim res As Long
' it is mandatory that the URL is prefixed with http:// or https://
If InStr(1, URL, "http", vbTextCompare) <> 1 Then
URL = "http://" & URL
End If
res = ShellExecute(0&, "open", URL, vbNullString, vbNullString, _
vbNormalFocus)
OpenBrowser = (res > 32)
End Function
> Have you tried looking at these? --
http://www.google.com/search?sourceid=navclient&ie=UTF-8&q=%22default+browser%22+vb6
> NFord
>
[quoted text clipped - 10 lines]
> > vbNullString,
> > vbNullString, &H0)