
02-23-2005, 09:13 PM
|
 |
Senior Contributor
|
|
Join Date: Mar 2003
Location: The 19th Hole
Posts: 989
|
|
Yes, it's possible
Code:
Option Explicit
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
Const SW_SHOWNORMAL = 1
Private Sub Command1_Click()
ShellExecute Me.hWnd, "Open", "http://www.lintz.netfirms.com", 0, 0, 3
End Sub
|
|