so i have
public class Form1 : Form {}
and
class Updater {}
and i have textBox1 on Form1, along with many other controls...
so here is my dilemma: i have a while(true) {} loop in Updater, and i couldn't stick it in the Form1 class, because it was preventing the form from loading. and i need to update a multi-lined textbox (textBox1) on Form1, from Updater. Updater is a tcp client, and when it receives information i need it to += its info into the textbox.. but i don't know how to access the textbox from a thread different from the one it was created in! please help!
Thanks.
edit: im looking for code examples please