FtsOnTransferCompleted Event

Description

This event is triggered by the completion of an entire file transfer operation.

Syntax
Private Sub object_FtsOnTransferCompleted 

ParameterDescription
This event has no parameters.

Remarks

The following code example shows how to use FtsOnTransferCompleted to notify the user how many bytes were transferred. The file transfer object is NSFile and the code in the subroutine will be called when a file transfer completed event is triggered. The code gets the number of bytes from the NumTotalBytesTransferred property and displays it to the user.


Sub NSFile_FtsOnTransferCompleted
	MsgBox nsfile.NumTotalBytesTransferred
End Sub

See Also

Return to File Transfer Reference.

© 1997 Microsoft Corporation. All rights reserved. Terms of Use.