Open website with default web browser
Open your default web browser with any url.
Rate Open website with default web browser
(2(2 Vote))
Create a new module and put this code into it
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 a command button on the form and put this code into it Private Sub Command1_Click()
ShellExecute hwnd, "open", "http://www.google.com", vbNullString, vbNullString, conSwNormal
End Sub
Open website with default web browser Comments
No comments yet — be the first to post one!
Post a Comment