ThrowError Property | ||
Syntax
Remarks
Data Type
Example
ImapClient1.ThrowError = False nError = ImapClient1.Connect(strHostName) If nError > 0 Then MsgBox ImapClient1.LastErrorString, vbExclamation Exit Sub Endif
On Error Resume Next: Err.Clear ImapClient1.ThrowError = True ImapClient1.Connect strHostName If Err.Number <> 0 MsgBox Err.Description, vbExclamation Exit Sub Endif On Error GoTo 0 See Also |
||
Copyright © 2025 Catalyst Development Corporation. All rights reserved. |