Internet Object
 
Syntax
 
Internet.GoHome
 
Description
Moves to the home page set in Internet Explorer in the currently open web browser.
 
If the web browser is not already active, it opens automatically.
 
See Also
Example
 
Sub Main
 
Internet.OpenPage "www.tradium.nl"
Wait 3 'sconds
Internet.OpenPage "www.instalbase.nl"
Wait 3 'seconds
'back to previous page
Internet.GoBack
Wait 3 'seconds
'go to next page now
Internet.GoForward
Wait 3 'seconds
'back to the set homepage
Internet.GoHome
Wait 3 'seconds
Internet.ClosePage
 
End Sub