BeginUpload event

The BeginUpload event is triggered immediately before the transmission of the upload.

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

Use this event to add custom actions immediately before the transmission of the upload to the MobiLink server.

Example

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