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