다음을 통해 공유


EXTVError Event

Topic Last Modified: 2006-06-11

The EXTVError event provides error information when the TreeView control encounters an error condition.

Syntax


            
    Sub control_EXTVError( num As Long,  desc As String,  context As String)

Parameters

  • control
    The instance name of the Exchange Store TreeView control.
  • num
    Error number.
  • desc
    Error description.
  • context
    Error contextual information.

Remarks

This event fires in special cases, such as a URL that is being redirected in the Exchange store.

Example

The following example displays error information.


Private Sub EXTV1_EXTVError(num As Long, desc As String, context As String)
    MsgBox num & " - " & desc & " - " & context
End Sub