> Hvordan får man VB til - ved tryk på en knap - at åbne en bestemt web-side
> på internettet.
Indsæt følgende under declarations:
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
Og følgende hvor du skal åbne siden:
ShellExecute Me.hwnd, "Open", "
http://www.google.com", "", "", 1
mvh
David Mortensen