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
ShellExecute 0&, vbNullString, "http://forum.codenet.ru", vbNullString, vbNullString, vbNormalFocus
Открыть html страницу
Как программно открыть заданую html страницу
в браузере по умолчанию ч/з ShellExecute или просто Shell
в своей форме ч/з WebBrowser control
в IE ч/з InternetExplorer.Application
Код: