
April 16th, 2002, 09:54 PM
|
 |
Banned ;)
|
|
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
|
|
The Thread object (java.lang.Thread) has a sleep method in it.
Code:
try {
thrdFoo.sleep(250); // sleep for 1/4 sec
} catch (InterruptedException e) {}
|