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