Load an URL in the default web browser with one line of code.
Load an URL in the default web browser with one line of code.
Rate Load an URL in the default web browser with one line of code.
(1(1 Vote))
'In a command button:
Private Sub Command1_Click()
Call Shell("start Http://www.yoururl.org", vbHide)
End Sub
'In a label:
Private Sub Label1_Click()
Call Shell("start Http://www.yoururl.org", vbHide)
End Sub
Load an URL in the default web browser with one line of code. Comments
No comments yet — be the first to post one!
Post a Comment