[RESOLVED] Multiple connections
I have a multiple client-server setup using VB 6.0 that is connecting upto 30 computers at once across a LAN using TCP/IP connection. After all the client computers are connected to the server computer, I was trying to broadcast a command to all the clients at once, but as I itterated through each winsock connection, the command would only being recieved by last computer which connected. Is there any way to do this so all the computers that are connected the receive the command?
VB Code:
for idx = 1 to 30
Socket(idx).SendData CmndStrng
next