The BeginUpload event is triggered immediately before the transmission of the upload.
Public Event BeginUpload( )
Member of DbmlsyncCOM.Dbmlsync
Use this event to add custom actions immediately before the transmission of the upload to the MobiLink server.
The following Visual Basic .NET example outputs a message when the BeginUpload event is triggered.
Private Sub dbmlsync1_BeginUpload() Handles dbmlsync1.BeginUpload MsgBox("Begin Upload") End Sub