Now before you groan with displeasure, Blue,
The only thing I'm groaning with displeasure is when I use this and have my wave line constantly set to 100%....
I certainly cant speak bout all/any coders, but my delays usually consist of lines like so...
which also accounts for ~100% of the coded delays in RR's code.
t=Timer
Do While t < (t + <time to wait>)
DoEvents ' <-- allows for a tight loop w/o completely tying up the cpu on our app
If timer<t Then t=Timer
Loop
And...doesn't require all the extra's when needing something simple.
Speaking of timers...
Code:
Do While
GetStatus RRVoiceNewRelease
if RRVoiceNewRelease = true then
Download
End If
if RRVoiceNewRelease = False then
sleep (60000)
End If
Wend
Bookmarks