The EndUpload event is triggered immediately after transmission of the upload to the MobiLink server.
Public Event EndUpload( )
Member of DbmlsyncCOM.Dbmlsync
Use this event to add custom actions immediately after transmission of the upload from dbmlsync to the MobiLink server.
The following Visual Basic .NET example outputs a message when the EndUpload event is triggered.
Private Sub dbmlsync1_EndUpload() Handles dbmlsync1.EndUpload MsgBox("End Upload") End Sub