Internet Object
 
Syntax
 
Internet.GoBack
 
Description
Moves to the previous accessed Web page in the currently open Web browser.
 
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