HTMLDocument Property

Microsoft Outlook Visual Basic

expression.HTMLDocument

expression    Required. An expression that returns an Explorer object.

Remarks

In order to use this property, a folder must be using a folder home page, or you can set the WebViewURL property of the MAPIFolder object to a Web page.

Example

The following Microsoft Visual Basic/Visual Basic for Applications (VBA) example accesses the Microsoft Outlook View Control.

 Sub GetHTML()
'Returns the Outlook View Control
            
    Dim objVC As OLXLib.ViewCtl
    Dim objExp As Outlook.Explorer
    Dim HTMLDoc As MSHTML.HTMLDocument
        
    'Reference the current folder
    Set objExp = Application.ActiveExplorer

    'Reference the HTML file that is the home page
    Set HTMLDoc = objExp.HTMLDocument

    'Reference an Outlook View Control that is on the HTML page
    Set objVC = HTMLDoc.all.tags("object").Item(0).Object

    'Have the control display an address book window
    objVC.AddressBook
 
End Sub