AgaBoogaBoo
Lifer
try{
Thread.currentThread().sleep(100);
}
catch(InterruptedException e)
{
System.exit(1);
} //HOLD ON A SEC YOUNG MAN
Basically I want to add a delay to a black jack applet I'm making, but isn't working. It's worked in a previous program so I'm somewhat confused.
Any ideas?
Thread.currentThread().sleep(100);
}
catch(InterruptedException e)
{
System.exit(1);
} //HOLD ON A SEC YOUNG MAN
Basically I want to add a delay to a black jack applet I'm making, but isn't working. It's worked in a previous program so I'm somewhat confused.
Any ideas?