Share via


appName Property

Returns a String that represents the name of the Microsoft FrontPage application.

expression.appName

*expression   * Required. An expression that returns an FPHTMLNavigator object.

Example

The following example displays the code name, application name, and current version number of the FrontPage application.

Sub GetBrowserInfo()
    Dim objBrowser As FPHTMLNavigator
    
    Set objBrowser = ActiveDocument.parentWindow.navigator
    
    With objBrowser
        MsgBox "Code Name = " & .appCodeName & vbCrLf & _
            "Application Name = " & .appName & vbCrLf & _
            "Version = " & .appVersion
    End With
End Sub

Applies to | FPHTMLNavigator Object | IOmNavigator Object