Ville Laakso wrote:
> How can I make something happen, say, every 5 seconds?
>
> -Ville Laakso
> [EMAIL PROTECTED]
At least two ways:
Either call Thread.sleep (5000) or, if you have other things to do,
GregorianCalendar timeout=null, timenow=null ;
timeout = new GregorianCalendar () ;
timeo
Hi Ville,
> How can I make something happen, say, every 5 seconds?
Just create a new thread which sleeps for 5 seconds and then do whatever
you need. :-)
Regards,
-
_/ _/_/ Jauvane Cavalcante de Oliveira
How can I make something happen, say, every 5 seconds?
-Ville Laakso
[EMAIL PROTECTED]