can't seem to find a pause or sleep function in the java api...anyone got it? :cool:
Printable View
can't seem to find a pause or sleep function in the java api...anyone got it? :cool:
What about public static void sleep(long millis) throws InterruptedException?
Check out this thread. http://www.vbforums.com/showthread.p...ighlight=sleep
use the following statement
Thread.currentThread.sleep(1000);
Is there an echo in here?
very cool, thanks guys :cool: