J
Jurgen Oerlemans
Hello
I have a program for which I want to see from a distance if it has been
started.
I made a timer which is enabled when the program is started.
Code in the timer:
Label_Again:
txtWaitRun.Text = "R"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Ru"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Run"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Runn"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Runni"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Runnin"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Running"
Threading.Thread.Sleep(300)
GoTo Label_Again
When this timer starts:
1: I do not see the text of txtWaitRun change
2: The rest of the program doesn't start ofcourse because the timer is
never ready.
How can I run this code permanently on the background?
Why doesn't the text change?
Best regards, Jurgen
I have a program for which I want to see from a distance if it has been
started.
I made a timer which is enabled when the program is started.
Code in the timer:
Label_Again:
txtWaitRun.Text = "R"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Ru"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Run"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Runn"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Runni"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Runnin"
Threading.Thread.Sleep(300)
txtWaitRun.Text = "Running"
Threading.Thread.Sleep(300)
GoTo Label_Again
When this timer starts:
1: I do not see the text of txtWaitRun change
2: The rest of the program doesn't start ofcourse because the timer is
never ready.
How can I run this code permanently on the background?
Why doesn't the text change?
Best regards, Jurgen