Jul 21, 2004 #1 JontyMC Programmer Nov 26, 2001 1,276 GB How do I do this: Execute some code, pause for 5 secs, execute some more code?
Jul 21, 2004 #2 sedj Programmer Aug 6, 2002 5,610 try { Thread.sleep(5000); } catch (Exception e) {} -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk Upvote 0 Downvote
try { Thread.sleep(5000); } catch (Exception e) {} -------------------------------------------------- Free Database Connection Pooling Software http://www.primrose.org.uk