you should be able to just send the array through, like
VB Code:
dim arr(2) as string arr(0) = "hi" arr(1)="hello" arr(2)="bye" winsock1.senddata arr
and in the recieve part,
VB Code:
dim arr() as string winsock1.getdata arr,vbarray
of course I could be wrong.




.
Reply With Quote