EndUpload event

The EndUpload event is triggered immediately after transmission of the upload to the MobiLink server.

Syntax
Public Event EndUpload( )
Member of DbmlsyncCOM.Dbmlsync
Remarks

Use this event to add custom actions immediately after transmission of the upload from dbmlsync to the MobiLink server.

Example

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