D
Drew
I have a running thread and inside the Run() Method
I have a little timer which uses Thread.Sleep like so:
for (int i=interval; i>0; i--)
{
timerLbl.Text=i.ToString();
Thread.Sleep(1000);
}
Now this works fine with the full .NET framework but
on the Compact Framework it just freezes my program.
Why doesn't this work on the CF?
Drew
I have a little timer which uses Thread.Sleep like so:
for (int i=interval; i>0; i--)
{
timerLbl.Text=i.ToString();
Thread.Sleep(1000);
}
Now this works fine with the full .NET framework but
on the Compact Framework it just freezes my program.
Why doesn't this work on the CF?
Drew