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

SQL Anywhere 11.0.0 » MobiLink - Client Administration » Introduction to SQL Anywhere Clients for MobiLink » Dbmlsync integration component (deprecated) » Dbmlsync integration component events

 

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