2
votes
votes
3 answers
C# to display different texts at different time, with a click of a button.
this may seem trivial, but I still have not figured out how to do it. private void button1_Click(object sender, EventArgs e) { textBox1.Text = "Waiting..."; System.Threading.Thread.Sleep(5000 ...
