Visual Basic Language Reference  

Erl Property

Returns an integer indicating the line number of the last executed statement. Read-only.

Public ReadOnly Property Erl() As Integer

Remarks

If Visual Basic encounters no line numbers, it returns 0.

Example

This example uses the Erl property to indicate the line number.

10:     On Error Resume Next
20:     Err.Raise(60000)
' Returns 20.
30:     MsgBox(Erl())

See Also

ErrorToString Function

Applies To

Err Object