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

ProgressIndex event Next Page

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