This event is triggered by the completion of an entire file transfer operation.
Private Sub object_FtsOnTransferCompleted
Parameter Description This event has no parameters.
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
Return to File Transfer Reference.
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.