Hi
I have to work on multithreading concepts in c# windows application.
Design a form with 3 labels and 3 text boxes and a button.
I should enter the time in three text boxes. Three different times. And press the Button.
Label 1 should become green color after the entered time period in text box1.
Label 2 should become Yellow color after the entered time period in text box2.
Label 3 should become Blue color after the entered time period in text box3.
I should have three threads to start three processes. Start the three threads in the button click.
Thread 1 to start the thread and wait for the entered time in text box 1 and make the label 1 green. And so on.
U should enter the time in milli seconds. 1 second = 1000 milliseconds.
So if I want to enter 5 seconds. I should enter 5000 in the text box. I should Write a windows application for this.
Pls anyone explain me how to do this . pls help me to do this sample.
js