Hi there.
I am using the follwoing line of code to execute web browser (IE or Netscape), but this doesn't work out on my PC bcoz I know that my IE 5 (Default browser) has some errors in it. But I have some softwares which load IE when executed.

Public Sub gotoweb()
Dim Ok As Long
url = txtWebsite.Text
Ok = ShellExecute(0&, vbNullString, url, vbNullString, "C:\", SW_SHOWNORMAL)
End Sub

Is there any other way to open Default web browser through VB?

Thanks

Kinjal