Hey, my first question! Cool.

Well, I am having problems with the reliability of the winsock control. Seems like when the network is slow, different packets of data combines. Since i have to decode the data to process for usage, some of the data got mixed up and generate a type mismatch error.

For example, the program is supposed to send abc123 and def456 after that, the receiving side will get 'abc123def456'. My program crashes because of that. How can I ensure that the 2 packets go seperate?

Thanks for any answers.