Type in a URL, and this example will open Internet Explorer, with the given URL.
1 Command button
ShellX Command
Submitted On | |
By | PyRo |
Level | Beginner |
User Rating | 3.7 (22 globes from 6 users) |
Compatibility | VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0, VB Script |
Category | Internet/ HTML |
World | Visual Basic |
Archive File |
Private Sub Command1_Click()
PageLocation$ = Text1.Text
ShellX = Shell("explorer.exe " + PageLocation$)
End Sub