supremer13
03-10-2008, 03:26 PM
how to create a button that go's to a website??
whanks, supremer
Vescovo
03-10-2008, 04:03 PM
Module:
Public 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
Private Const SW_SHOW = 5
Button Code:
ShellExecute Me.hwnd, "open", "www.website.com", "", "", SW_SHOWNORMAL
Powered by vBulletin® Version 4.1.12 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.