Someone Post Hyperlink Code Here?
I Wanna Link A Commandbutton To A Webpage
USING VB6
Printable View
Someone Post Hyperlink Code Here?
I Wanna Link A Commandbutton To A Webpage
USING VB6
I think this is what your looking for?
Code:'Put this In the Declare section of the project
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
Public Const SW_ShowNormal = 1
'put this where you can execute it, such as in a button click event
Dim iReturn As Long
iReturn = ShellExecute(frmMain.hwnd, "Open", "http://www.demote.com", vbNullString, vbNullString, SW_ShowNormal)
Funny, I just looked up this snippet a few weeks ago for a little launcher I made.
VB is super easy, wubs it =D
I hate declaring variables though >.< PHP spoils me
Gary bene?
What are you actually trying to code?
It's abit obvious what he is coding through, maybe not to a Habbotard though.
Maybe,
Make an invisible internet browser object.
Code:Private Sub cmdOne_Click()
browser.navigate2 ("http://domain.com")
End Sub
Hey mate, if you still need help, heres a code you could use! :)
Shell (explorer "www.domain.com")
I think that works, i've not used it for ages though, not so sure... :S