Private tada As Byte() Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load tada = My.Computer.FileSystem.ReadAllBytes("C:\Windows\Media\tada.wav") End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click My.Computer.Audio.Play(tada, AudioPlayMode.Background) End Sub