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