Internet Object
 
Syntax
 
Set Obj = Internet.Document
 
Description
Returns the current Web page as a document object (read only). For more information about the Document object, see (online) help for the Microsoft Interner Explorer.
 
See Also
Example
 
Sub Main
 
   Internet.OpenPage "http//www.tradium.nl"
 
   Dim MyObj As Object
   Set MyObj = Internet.Document
 
End Sub