Salve, visto ke ho notato ke molte persone non sanno creare sottofondi looppati in mp3 con visual basic 2005 scrivo come ho fatto io:
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
PlayMP3()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
PlayMP3()
End Sub
Private Sub PlayMP3()
audiom = New Audio("terminator.mp3")
audiom.Play()
Timer1.Interval = audiom.Duration * 1000
End Sub