CancelRequests Method

Microsoft FrontPage Visual Basic

Immediately cancels all requests to the WebEx object without saving.

expression.CancelRequests

expression    An expression that returns a WebEx object.

Example

The CancelRequests method can be used to stop a process that may be taking too long, may appear to be in an infinite loop, or that may be coming from a questionable source.

Private Sub CancelRequestsToWeb_Click()
    Dim myWeb As WebEx

    Set myWeb = ActiveWeb
    myWeb.CancelRequests
End Sub