PDA

View Full Version : Solved: Application.Wait --- Less then on SEC



asingh
08-11-2006, 07:45 PM
Hi,

I use the function Application.wait ("HH:MM:SS"), to force my program at times to stop running. Is it possible to make it stop for say half a second..or a quarter of a second.....???


regards,

Asingh

Emily
08-12-2006, 05:37 AM
' Module
Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)

.....
Sleep 500 ' 0.5 Sec
.....

asingh
08-12-2006, 07:53 AM
Works perfect...thanks Emily.

Regards,

Asingh