I have an embedded video. It ends when it finishes playing.
Is there anyway to set it so it loops continuously?
Thanks in advance
Private Sub WindowsMediaPlayer1_PlayStateChange(ByVal NewState As Long)
If NewState = 1 Then
WindowsMediaPlayer1.Controls.Play
WindowsMediaPlayer1.settings.setMode "loop", True
End If
End Sub
I'm sorry. That does not seem to work