by PyRo (1 Submission)
Category: Internet/HTML
Compatability: Visual Basic 3.0
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating:
(6 Votes)
Type in a URL, and this example will open Internet Explorer, with the given URL.
Inputs
1 Command button
Assumes
ShellX Command
Private Sub Command1_Click()
PageLocation$ = Text1.Text
ShellX = Shell("explorer.exe " + PageLocation$)
End Sub