Back to product page
- Introduction
- License agreement
- Getting Started
- Enumerations
- Objects
- wodTelnetDLX
- Methods
- Properties
- Authentication
- AutoSize
- BackColor
- BackLog
- BindIP
- BindPort
- Blocking
- BorderVisible
- Certificate
- CharEncoding
- Column
- Columns
- ColWidth
- Command
- ContextMenu
- CursorHeight
- DataOut
- DataReady
- Enabled
- ErrorText
- ExitSignal
- ExitStatus
- Font
- ForeColor
- HandleSysKeys
- Hostname
- hWnd
- KeepAlives
- Language
- LastError
- LocalCertBag
- Login
- MousePointer
- MouseWheel
- MyHostname
- MyIP
- Notification
- Password
- Picture
- Port
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RecordMode
- RemoteIdentification
- Row
- RowHeight
- Rows
- ScrollBars
- ScrollX
- ScrollY
- SecureMethod
- SelectedText
- ShowCursor
- Socket
- SpecialKeyFocus
- State
- StateText
- StripANSI
- StripColors
- TabStop
- TelnetOption
- TerminalEmulation
- TerminalType
- Text
- Timeout
- TranslateSpecial
- UseIPv6
- Version
- Events
- IwodTelnetNotify
- wodTelnetDLX
- How to get support?
- Technical information
- Fast notifications interface
- Error list
TransferProgress event
Fires during file transfer.
Syntax
- Basic
Private Sub object_TransferProgress (ByVal Position, ByVal Total)
The TransferProgress(Position,Total) syntax has these parts:
The TransferProgress(Position,Total) syntax has these parts:
Position | A Long value. Current transfer position. |
Total | A Long value. Total number of bytes that will be transferred. |
Remarks
TransferProgress event is fired as progress indicator during the transfer initiated by SendFile/ReceiveFile methods. It will usually fire more than once, on variable positions. ZMODEM protocol, for example, sends different packet lengths depending on line speed and quality - and you cannot change these lengths.It is possible that Position reverts back during the transfer - this happens if remote side didn't correctly receive our blindly sent packets, and we need to resend file from certain position.
When transfer finishes, TransferEnd event will fire. Same rules apply when file is being received.