Video Chat Pro ActiveX Control

OnUserConnectionLost

 

Occurs when another user (Video Chat Pro Sender) disconnected in same conference room.
If your conference room have 3 user connected and you call Listen method, if 3 user disconnected.
you will received 3 times of OnUserConnectionLost event.

void VideoChatReceiver1_OnUserConnectionLost(ByVal iConferenceNumber As Long,
ByVal iUserID As Long)


Parameter
iConferenceNumber - the conference number.
iUserID - the user ID.

Remark
This property is Read/Write.

Example

   

Visual Basic Syntax
Private Sub VideoChatReceiver1_OnUserConnectionLost(ByVal iConferenceNumber As Long, ByVal iUserID As Long)
ListEvent.AddItem "Disconnected User ID:" + Str(iUserID) + " Confer :" + Str(iConferenceNumber)
End Sub