Hi, I have an XL spreadsheet with a sound WAV as an EMBEDDED OBJECT, saved as a Macro.
I have another Macro, to play the WAV after a period of time.
Sub MyMacro()
'Bunch of code here
Application.OnTime Now + TimeValue("00:01:00"), "mysoundmacro"
End Sub
HOW CAN I LOOP THIS vb TO REPEAT THE CYCLE?
SEE SAMPLE FILE
Cheers
Stephan
I have another Macro, to play the WAV after a period of time.
Code:
'Bunch of code here
Application.OnTime Now + TimeValue("00:01:00"), "mysoundmacro"
End Sub
Code:
HOW CAN I LOOP THIS vb TO REPEAT THE CYCLE?
SEE SAMPLE FILE
Cheers
Stephan