Back to product page
- Introduction
- Overview
- License agreement
- Configuration file creation
- Getting Started
- Objects
- Enumerations
- wodAppUpdate
- Methods
- Properties
- AutoRestart
- Blocking
- CmdAfter
- CmdBefore
- CmdLine
- DebugFile
- DialogNoteText
- DialogNoteURL
- DialogText
- Files
- ForceRestart
- GlobalTerminate
- Login
- Messages
- Notification
- Password
- PrevExist
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- ReplaceRule
- RequireAdmin
- ServiceIsRunning
- Signature
- State
- StateText
- Timeout
- UpdaterName
- UpdaterTimeout
- URL
- URLHandler
- UserIsAdmin
- Version
- Visible
- WinVersion
- Events
- Notifications
- UpdFile
- UpdFiles
- UpdMessage
- UpdMessages
- UpdProcess
- UpdProcesses
- How to get support?
- Technical information
- Fast notifications interface
- Error list
DownloadDone event
Fires when component finishes downloading all files.
Syntax
- Basic
Private Sub object_DownloadDone(ErrorCode, ErrorText)
The DownloadDone(object,ErrorCode,ErrorText) syntax has these parts:
The DownloadDone(object,ErrorCode,ErrorText) syntax has these parts:
object | A wodAppUpdate object. |
ErrorCode | A Long value. Holds error number, if any. |
ErrorText | A String value. Holds text description of the error, if any. |
Remarks
This event fires when wodAppUpdate has downloaded all neccessary files. At this point it has also created temporary executable file that will perform file replacement. You can just call Update from here, if you want actual replacement to take place, or you can change configuration files, perform neccessary steps etc. Typically, you can use code like this in this event:Private Sub Upd1_DownloadDone(ByVal ErrorCode As Long, ByVal ErrorText As String)
If Not ErrorCode Then
Upd1.Update
Else
MsgBox ErrorText, vbOKOnly, "Error"
End If
End Sub