Back to product page

DownloadDone method


Called when component finishes downloading all files.

Syntax

  • Basic
object.DownloadDone Owner, ErrorCode, ErrorText
The DownloadDone(object,Owner,ErrorCode,ErrorText) syntax has these parts:
objectAn expression evaluating to an object of type IwodAppUpdateNotify.
OwnerRequired. A wodAppUpdate object. Reference to wodAppUpdateCom instance that called this notification method.
ErrorCodeRequired. A Long value. Holds error number, if any.
ErrorTextRequired. A String value. Holds text description of the error, if any.

Remarks

NOTE: This method is called only if you implemented IwodAppUpdateNotify interface in your application, and wodAppUp.Notification property has received reference to instance of your implementation.

This notification method is called 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 notification method:
 
Private Sub Private Sub IwodAppUpdateNotify_DownloadDone(ByVal Owner As wodAppUpdateCOMLib.IwodAppUpdateCom, ByVal ErrorCode As Long, ByVal ErrorText As String)
   If Not ErrorCode Then
       Upd1.Update
   Else
       MsgBox ErrorText, vbOKOnly, "Error"
   End If
End Sub


Platforms

Windows