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

SQL Anywhere 11.0.1 (Français) » MobiLink - Client Administration » SQL Anywhere Clients for MobiLink » Dbmlsync integration component (deprecated) » Dbmlsync integration component events

 

ConnectMobilink event

The ConnectMobilink event is triggered immediately before the component connects to the MobiLink server.

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

Use this event to add custom actions immediately before the remote database connects to the MobiLink server. At this stage, dbmlsync has generated the upload.

The ConnectMobiLink event occurs after the BeginSynchronization event.

Example

The following Visual Basic .NET example outputs a message when the ConnectMobilink event is triggered.

Private Sub dbmlsync1_ConnectMobilink()
Handles dbmlsync1.ConnectMobilink

        MsgBox("Connecting to the MobiLink server")

End Sub