Jul 4, 2005 #1 lintow Programmer Nov 29, 2004 82 US Does anyone know how to unload a form after running five seconds? any help would be appreciated
Jul 4, 2005 #2 BobRodes Instructor May 28, 2003 4,215 US Code: Dim x As Long x = Timer Do Until Timer >= x + 5 DoEvents Loop Unload Me HTH Bob Upvote 0 Downvote