ThrowError Property | ||
Syntax
Remarks
Data Type
Example
HttpClient1.ThrowError = False nError = HttpClient1.Connect(strHostName) If nError > 0 Then MsgBox HttpClient1.LastErrorString, vbExclamation Exit Sub Endif
On Error Resume Next: Err.Clear HttpClient1.ThrowError = True HttpClient1.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. |