Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » MobiLink - Client Administration » Dbmlsync Integration Component » Dbmlsync Integration Component events

EndSynchronization event Next Page

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