Sarge, here is the code which list the users online:
Code:
If I_>0 Then
Dim Z_,ol,nc
Z_=""
ol=0
nc=30
Dim i
i=0
While i<I_ And ol<nc
Dim s
s=H_(i).State
If s AND 2 Then
ol=ol+1
Dim h,AB_
h=" href="""&"vbscript:op("&i&")"""
AB_=fixName(H_(i).FriendlyName,130)
Z_=Z_&"<a"&h&">"&getStateImage(s)&"</a> "&"<a"&h&" title="""
Z_=Z_&"Send an instant message to"&" "&AB_&"."
Z_=Z_&""" class=mclink>"&K_&AB_
Z_=Z_&"</font></a><br>"
End If
i=i+1
Wend
If ol>0 Then
W_="block"
What you could try is to make let this loop run until let's say 10 contacts.
Then make a new loops which runs from 11 to 20, and so on.
Give the class always a different name like mclink1, mclink2, ...
Then you can try if you can create several columns in the table row containing the online contacts in the template, by using clas mclink1 for the first comlumn, mclink2 for the second, and so on.
I think that is the only way to seperate the online users and put them in different tablerows or columns!