Im building a client server app, everything works just fine the problem is that sometimes when i send multiple data to the server of from the servr to the client, the strings of two or more events overlap for example in form_load i request the server for the list of users and the list of online users at the same time so it would be:
Code:
winsock.senddata "/Userlist/"
doevents
doevents
winsock.senddata "/OnlineUsers/"
doevents
doevents
the problem is that somtimes the data arrives to the server as one string instead of two separate command, for example it arrives like:
"/Userlist//OnlineUsers/"... i thought that DoEvents would handle that but apparently it didnt, is there any other way i can take care of that... thnx