Pausing a application without using timer control ...

VB Code:
  1. Private Sub Pause(Optional Delay As Integer = 1)
  2. Dim dblWait As Double
  3.    
  4.     Let dblWait = Timer: Do Until Timer < dblWait Or Timer >= dblWait + Delay: DoEvents: Loop
  5. End Sub