README.md

December 4, 2022 ยท View on GitHub

IE Webpage Loader

Description

Type in a URL, and this example will open Internet Explorer, with the given URL.

More Info

1 Command button

ShellX Command

Submitted On
ByPyRo
LevelBeginner
User Rating3.7 (22 globes from 6 users)
CompatibilityVB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0, VB Script
CategoryInternet/ HTML
WorldVisual Basic
Archive File

Source Code

Private Sub Command1_Click()
PageLocation$ = Text1.Text
ShellX = Shell("explorer.exe " + PageLocation$)
End Sub