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