BeginDownload event

The BeginDownload event is triggered at the beginning of the download stage of a synchronization.

Syntax
Public Event BeginDownload( )
Member of DbmlsyncCOM.Dbmlsync
Remarks

Use this event to add custom actions at the beginning of the download stage of a synchronization.

Example

The following Visual Basic .NET example outputs a message when the BeginDownload event is triggered.

Private Sub dbmlsync1_BeginDownload()
Handles dbmlsync1.BeginDownload

        MsgBox("Beginning Download")

End Sub