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

ProgressMessage event Next Page

SetTitle event


The SetTitle event is triggered when status information changes. In the dbmlsync utility, this information is displayed in the title bar.

Syntax

Public Event SetTitle( ByVal title ) As String
)
Member of DbmlsyncCOM.Dbmlsync

Parameters

title    The title in the dbmlsync window title bar.

Remarks

Use this event to receive the title normally seen on the dbmlsync window when its value changes.

Example

The following Visual Basic .NET example sets the title of a Windows form when the SetTitle event is triggered.

Private Sub dbmlsync1_SetTitle(
 ByVal title As String
)
Handles dbmlsync1.SetTitle

        Me.Text = title

End Sub