Is there any way of slowing down the execution of a macro? Cheers Aidy
C Chirag Feb 17, 2004 #2 You can use the Sleep() API: --- Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) --- Call it as Sleep(1000) for 1 second pause. - Chirag PowerShow - View multiple shows simultaneously http://officeone.mvps.org/powershow/powershow.html
You can use the Sleep() API: --- Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) --- Call it as Sleep(1000) for 1 second pause. - Chirag PowerShow - View multiple shows simultaneously http://officeone.mvps.org/powershow/powershow.html