textbox or other control that has immediate update for scrolling messages
while(foo == true) {
textBox1.text = msg;
msg = getNextMsg();
}
while(foo == true) {
textBox1.text = msg;
msg = getNextMsg();
}
while(foo == true) {
textBox1.text = msg;
Application.DoEvents();
msg = getNextMsg();
}
-chris