I made a game in VB .Net that uses tcp and sends messages back and forth.

What is happening is, every so often, the message cannot be sent quickly enough, so then the TCPObj.connect() method goes into a loop, until it reaches the timeout and then spits out an error. Most of the time though, it never gets to the error, my application just freezes, and then comes back after TCPObj.connect() succeeds. How can I make the connect() method do application.doevents while it's trying to connect? Basically, I dont want it to freeze up my whole application. Since tcp.connect() is a .NET method, I can't go in and add application.doevents.

Thanks

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Run your TCP connectivity code on a separate thread. You can use a queue to store events to be sent from your UI and have the separate thread pick them up and process them.

link|improve this answer
feedback

Put the connecting to the TCP in another thread. You can use the Async callback to get back to the main thread. If it errors out on the other thread because of timeouts you can deal with it there or on the main thread.

link|improve this answer
feedback

you should use a backgroundworker

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.