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