Hi all, I'm having some problems with a small ircbot i'm writing. Basically I connect to the server using a tcpclient in a seperate class, which also runs on its own thread. I want to display the server text in a richtextbox control on the main form.
The big issue I'm having is that as soon as the text starts coming in the whole application freezes. I started by trying to use an event that the main form would listen for and then add the text to the textarea, which works up untill the text stops coming and then the app freezes again.
I've also tried using a delegate with the same result. Has anyone else had this issue ?