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

ConnectMobilink event Next Page

DisconnectMobilink event


The DisconnectMobilink event is triggered immediately after the component disconnects from the MobiLink server.

Syntax

Public Event DisconnectMobilink( )
Member of DbmlsyncCOM.Dbmlsync

Remarks

Use this event to add custom actions immediately after the remote database disconnects from the MobiLink server.

Example

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

Private Sub dbmlsync1_DisconnectMobilink()
Handles dbmlsync1.DisconnectMobilink

        MsgBox("Disconnected from the MobiLink server")

End Sub