A Alexf Jan 15, 2009 #1 Is there anyway to delay a task a set amount of time before continuing on with VBA? Thanks.
C Chirag Jan 15, 2009 #2 You can use the Sleep() API: Private Declare Sub Sleep Lib "kernel32.dll" ( _ ByVal dwMilliseconds As Long) Call it as: Sleep 1000 for waiting 1 second. - Chirag PowerShow - View multiple PowerPoint slide shows simultaneously http://officeone.mvps.org/powershow/powershow.html
You can use the Sleep() API: Private Declare Sub Sleep Lib "kernel32.dll" ( _ ByVal dwMilliseconds As Long) Call it as: Sleep 1000 for waiting 1 second. - Chirag PowerShow - View multiple PowerPoint slide shows simultaneously http://officeone.mvps.org/powershow/powershow.html
D David Marcovitz Jan 15, 2009 #3 Alexf said: Is there anyway to delay a task a set amount of time before continuing on with VBA? Thanks. Click to expand... Check out Examples 8.4 and 8.5 on my site: http://www.PowerfulPowerPoint.com/ Click on "Examples by Chapter" and "Chapter 8." --David
Alexf said: Is there anyway to delay a task a set amount of time before continuing on with VBA? Thanks. Click to expand... Check out Examples 8.4 and 8.5 on my site: http://www.PowerfulPowerPoint.com/ Click on "Examples by Chapter" and "Chapter 8." --David
A Austin Myers Jan 15, 2009 #4 Yes, but learn a bit about "Do Events" before attempting it. Austin Myers AT&W Technologies Creators of PowerPoint add-ins
Yes, but learn a bit about "Do Events" before attempting it. Austin Myers AT&W Technologies Creators of PowerPoint add-ins