Shell Out to Default Browser code by Tolis
General Declarations Put the following code in a .bas Module
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 Public Const conSwNormal = 1
Put the following code in the form_load of your Form
ShellExecute hwnd, "open", "http://www.agrino.org/cis150", vbNullString, vbNullString, conSwNormal
[BACK]