Re: Cute chat and Dnn2.12 Urgent Help!

  •  02-04-2005, 5:29 AM

    Re: Cute chat and Dnn2.12 Urgent Help!

    I started writing a DNN module to see who is in a chat room, ie the names of the members, but I can't seem to be able to figure it out.
     
    I figured out the number of people using the following
     

    Dim cs As ChatSystem = ChatFactory.CreateChatSystem()

    Dim user As UserIdentity

    Dim al As ArrayList = New ArrayList

    Dim ids() AsInteger = cs.ListRooms()

    Dim id AsInteger

    ForEach id In ids

    Dim row As DataRow = cs.GetRoom(id)

    al.Add(

    New RoomInfo(row))

    Next

    Repeater1.DataSource = al

    Repeater1.DataBind()
     
    But is there available a list of chat identities in a particular room?
     
    regards
    Eric
View Complete Thread