Z
Zach Maslin
I am a little embarrassed to have to ask this question
but the fact of the matter is that I need to solve it.
I need to display messages on a display a couple
of seconds apart. I wanted to separate them with
sleep(). I came up against the problem that a text
box will not display strings subsequently as in the
sample code below.
MessageBox.Show("1");
textBox1.Text = "Enee";
MessageBox.Show("2");
textBox1.text = "Manee";
MessageBox.Show("3");
textBox1.Text = "Moo";
The text box will only show
Moo. What is the way around this?
Zach.
but the fact of the matter is that I need to solve it.
I need to display messages on a display a couple
of seconds apart. I wanted to separate them with
sleep(). I came up against the problem that a text
box will not display strings subsequently as in the
sample code below.
MessageBox.Show("1");
textBox1.Text = "Enee";
MessageBox.Show("2");
textBox1.text = "Manee";
MessageBox.Show("3");
textBox1.Text = "Moo";
The text box will only show
Moo. What is the way around this?
Zach.