私は次のコードを持っています: http://pastebin.com/EgjbzqA2これは基本的にhttp://www.dreamincode.net/forums/topic/57357-mymusic-player/の単純なバージョンです。1つのファイルを繰り返し再生させたいのですが、なぜか機能しません。プログラムは各ファイルを 1 回再生してから停止します。
Private Sub Player3_PlayStateChange(ByVal NewState As Integer) Handles Player3.PlayStateChange
Static Dim PlayAllowed As Boolean = True
Select Case CType(NewState, WMPLib.WMPPlayState)
Case WMPLib.WMPPlayState.wmppsReady
If PlayAllowed Then
Player3.controls.play()
End If
Case WMPLib.WMPPlayState.wmppsMediaEnded
' Start protection (without it next wouldn't play
PlayAllowed = False
' Play track
Player3.controls.play()
' End Protection
PlayAllowed = True
updatePlayer()
End Select
End Sub