The BeginDownload event is triggered at the beginning of the download stage of a synchronization.
Public Event BeginDownload( )
Member of DbmlsyncCOM.Dbmlsync
Use this event to add custom actions at the beginning of the download stage of a synchronization.
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