in range and pause

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

is there a if inrange (0,15,30,45) function instead of using if a=0 or
a=15 or a=30 or a=45?

how do i hove two sounds one after the other without the second one
cutting off the first?

is there a better way for pausing:

fld = now()
while fld + timeserial(0,0,5) > now() 'delay 5 seconds
wend
 
thanks for the help. My code is different:

Const SND_ASYNC = (0) 'wait until finish (was 1)

LResult = sndplaysound(SoundFile, SND_NODEFAULT + SND_ASYNC)
 
Back
Top