Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Attachmate.Reflection.Objects.Emulation.OpenSystems Library / FileTransfer Object / AbortTransfer Method
In This Topic
AbortTransfer Method (FileTransfer)
In This Topic
Aborts a file transfer in progress for any of the supported transfer protocols (Kermit, WRQ/Reflection, Xmodem, or Zmodem) without communicating with the host program.
Syntax
expression.AbortTransfer() As ReturnCode
where expression is a variable that represents a FileTransfer Object

Return Value

One of the following ReturnCode enumerated values.

Member Description
Cancelled Cancelled.
Error Error.
PermissionRequired Permission is required.
Success Success.
Timeout Timeout condition.
Truncated The text is truncated.

Remarks
This method is more drastic than CancelTransfer, and may leave the host in an unpredictable state. Use AbortTransfer only if you believe the host transfer program has stopped responding; otherwise use CancelTransfer.

This method is not likely to be useful in a macro because all transfer methods must complete execution before subsequent commands are executed. AbortTransfer can be useful for mapping to custom items such as toolbar buttons, keystrokes or events. You could also use this method if you are using automation. For example, you could use stand-alone Visual Basic .NET to create a form with an Abort button to abort a transfer in progress.

See Also