I am using a mmControl named mmcWav. It works fine using a command button mouse down event, "I want it to play as long as the mouse button is down". How can I make it loop and to restart each time the command1 button is clicked. This is how I start the wav playing.
Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
mmcWav.Command = "Open"
mmcWav.Command = "Play"
End Sub
Thanks!!!!!