|
MessengerYouLike
|
|
This Property show the Status [ IMSDK.IMClient.Status ] of the Logged in user
public IMClient.Status Status;
Public Property Status() As IMClient.Status
When User is Logged in this property is filled with Status [ IMSDK.IMClient.Status ] of the current user which can be access during the logged in session of the user
[Visual Basic] 'Create a new MCUser Public MCUser As New IMSDK.User Private Sub MC_OnLoggedin(ByVal UserObject As IMSDK.User) Handles MC.OnLoggedin MCUser = New IMSDK.User MCUser = UserObject Msgbox("user Status is " & Cstr(MCUser.Status)) End Sub