.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT LANGUAGE


Examples: Resume statement
Sub ResumeSub()
  On Error GoTo ErrHandler
  ' ...
  Error 1                  ' Intentionally raise an error.
  Error 10
  Error 100
  ' ...
  Exit Sub

ErrHandler:                 ' Error-handling routine
  Print "Error " & Err & " at line number" &Erl
  Resume Next              ' Resume the procedure.
End Sub
' The error-handling routine prints information about the
' current error. Then LotusScript resumes execution of the
' script at the statement following the statement that caused
' the current error.

See Also