Re: Using existing membership information + chat + Allow Anonymous= Error!!!

  •  12-22-2009, 12:23 PM

    Re: Using existing membership information + chat + Allow Anonymous= Error!!!

    dspoh:
    i think i found my answer:
     

    1. if loginname = "" then   
    2.    dim empty(0) as IChatUserInfo   
    3.    return empty   
    4. end if  

    :)


    My bad, empty(0) doesn't not return an empty collection, should be like this instead:
    1. if loginname = "" then   
    2.     Dim empty(-1) as IChatUserInfo   
    3.     return empty   
    4. end if  

View Complete Thread