Originally posted by qionghua yang:
Hi joel,
Try replacing "return clientInfo[][];" with
"return clientInfo; "
Hope this helps.
qionghua
Thanks qionghua, that helped. I had to take an extra step though because the compiler did not like
because it said it was never initialized, so I had to replace it with
and it compiled fine. My problem is that I never know how many elements the array is going to have, so I don't like hard coding the '10'. Is there a way to make the array size variable?
Thanks
------------------
I'm a soldier in the NetScape Wars...
Joel