Internet Object
 
Syntax
 
Internet.OpenPage UrlOrFile
 
Description
Opens a Web page in the currently open Web browser. An HTML file can also be specified as a parameter.
 
If the web browser is not already active, it is opened automatically.
 
Parameter
Description
UrlOrFile
Text, specifies the www page to be requested, or refers to a local html document.
See Also
Example
 
Sub Main
          
   Internet.OpenPage "http//www.tradium.nl"
   Wait 5 ‘seconds
 
   Internet.ClosePage
 
End Sub