Description
-
Fires when updating is done.
Syntax
-
Private Sub
object_UpdateDone(ErrorCode,
ErrorText)
The UpdateDone Event 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 is fired when Update
method has completed without needed to restart the
application. This means that either there were no files to
update at all, or none of them were locked.
Typically, this event will not fire at all since Update
method call will cause your application to be
restarted.
|