WaitingForUploadAck event

The WaitingForUploadAck event is triggered when the component begins waiting for upload acknowledgement from the MobiLink server.

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

Use this event to add custom actions when the component is waiting for upload acknowledgement from the MobiLink server.

Example

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

Private Sub dbmlsync1_WaitingForUploadAck()
Handles dbmlsync1.WaitingForUploadAck

    MsgBox("Waiting for Upload Acknowledgement")

End Sub