Click to See Complete Forum and Search --> : Timers


Sorantis
May 6th, 2005, 05:06 AM
In Java timer has following functions

timer.setInitialDelay(1000);

timer.setRepeats(false);

So,I their's analogue in .NET

timer.Interval = 1000;

timer.AutoReset = false;

Is it wright??

Andy Tacker
May 6th, 2005, 06:35 AM
yes, interval and AutoReset properties are exactly those.