Re: A short one

1998-06-18 Thread peter johnson
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

Re: A short one

1998-06-16 Thread Jauvane Cavalcante de Oliveira
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