There is also the Sleep API which will pause your Apps Processes for a Given number of Milliseconds..
Code:
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Private Sub Command1_Click()
    Caption = "Ready.."
    Sleep 100   'Pause for 1/10 of a Sec.
    Caption = "Go!!!"
End Sub
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]