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

 

ProgressMessage event

The ProgressMessage event is triggered when synchronization progress information changes.

Syntax
Public Event ProgressMessage( ByVal msg As String )
Member of DbmlsyncCOM.Dbmlsync
Parameters

msg   The new progress string.

Remarks

Use this event to receive the string normally displayed with the dbmlsync progress bar.

Example

The following Visual Basic .NET example sets the value of a progress label when the ProgressMessage event is triggered.

Private Sub dbmlsync1_ProgressMessage(
 ByVal msg As String
)
Handles dbmlsync1.ProgressMessage

    lblProgressMessage.Text = msg

End Sub