Returns the automation object supported by the application that contains the WebBrowser control, if the object is accessible; otherwise, this property returns the WebBrowser control's automation object.
Syntax
object.Application
Parameters
- object
- Required. An object expression that evaluates to an object in the Applies To list.
Remarks
Use this property with the Set and CreateObject commands or with the GetObject command to create and manipulate an instance of the Microsoft® Internet Explorer application as shown in the following early binding example.
Dim IE As SHDocVw.InternetExplorer Set IE = CreateObject("InternetExplorer.Application")
Applies To