OnSendComplete

This event is for Socket Objects. It occurs when all the data has been sent to its destination.

Group:   Events

Applies To:   Socket Object events

Example:

Dim WithEvents oSocket As Socket ' module level Dim

Private Sub oSocket_OnSendComplete()

  On Error Resume Next

End Sub