SlowPage Property

Microsoft FrontPage Visual Basic

SlowPage Property

Returns or sets a Long that specifies the number of seconds a page can take to download before it is classified as slow. Pages that are classified as slow appear in the Slow Pages list in the Microsoft FrontPage Reports view. Read/write.

expression.SlowPage

expression    Required. An expression that returns an Application object.

Remarks

The SlowPage property is used in conjunction with the ConnectionSpeed property to determine the simulated download time of a Web page.

Example

The following example sets the SlowPage property to 10 seconds, indicating that all pages that take over 10 seconds to download (in this case, using a 56K modem) will be classified as slow in the FrontPage Reports view.

    Sub SetSlowPage()
'Modifies the SlowPage property

    Dim objApp As FrontPage.Application
    Set objApp = FrontPage.Application

    With objApp
        'Set value to 10, slow pages take at least 10 seconds
        .SlowPage = 10
        'Set user's connection speed to 56K modem
        .ConnectionSpeed = fpConnect56K
    End With

End Sub