Internet Object
 
Syntax
 
Internet.GetProperty(Value)
 
Description
Returns the value of the property retrieved with Value from the currently open Internet Explorer that was previously stored under this name using the PutProperty method. It is an alternative to the PropertyBag function used in ActiveX documents.
 
Parameter
Description
Value
Text, specifies the property to be retrieved that was previously stored under this name with PutProperty.
See Also
Example
 
Sub Main
 
Dim sPage as String
 
Internet.OpenPage "www.tradium.nl"
sPage = Internet.LocationURL
 
'save page as property
Internet.PutProperty "MijnWeb", sPage
sPage = "" 'inhoud variabele wissen
 
Wait 3 'seconds
 
'back to the set homepage
Internet.GoHome
 
Wait 3 'wait for seconds, then back again
 
sPage = Internet.GetProperty("MyWeb")
Internet.OpenPage sPage
 
Wait 3 'seconds
 
Internet.ClosePage
 
End Sub