The DoneExecution event is triggered when all synchronizations started by a Run method invocation have completed.
Public Event DoneExecution( )
Member of DbmlsyncCOM.Dbmlsync
Use this event to add custom actions when all synchronizations started by a Run method invocation have completed.
Using the ExitCode property, the following Visual Basic .NET example outputs the exit code from the synchronizations started by the last Run method invocation:
Private Sub dbmlsync1_DoneExecution() Handles dbmlsync1.DoneExecution MsgBox(dbmlsync1.ExitCode) End Sub