How to make WindowsMediaPlayer repeat playing indefinitely

  • Thread starter Thread starter thomasc
  • Start date Start date
T

thomasc

Hi,

I am a newbie VB.NET2003 user.

I'd like to find out the property setting or the 'settings' interface
of WindowsMediaPlayer(WMP.dll) control to make the player repeat its
multimedia file indefinitely.

I've been digging for this information for a couple of days but
haven't been able to find out how.
Please let me know if you have a clue.

Thank you!
 
thomasc said:
I'd like to find out the property setting or the 'settings' interface
of WindowsMediaPlayer(WMP.dll) control to make the player repeat its
multimedia file indefinitely.

\\\
Me.AxWindowsMediaPlayer1.settings.setMode("loop", True)
///
 
\\\
Me.AxWindowsMediaPlayer1.settings.setMode("loop", True)
///

This solution is only valid when you're using WMP's built-in playlist
instead of your own and playing a single file.
 
Back
Top