Hi there,
I'm doing a simp,e wav player as a school project. I know how to load, play and stop the audio but I don't know how to pause/resume it.
Here is my code
Public Class AudioPlayer
Dim snd As Media.SoundPlayer = New Media.SoundPlayer
Dim theFile As String = Nothing
Dim sndCheck As Boolean = False
Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click
Dim openDLG As OpenFileDialog = New OpenFileDialog
Dim dlgResult As DialogResult = New DialogResult
openDLG.CheckFileExists = True
openDLG.Filter = "Wave Sound Files *.wav|*.wav"
openDLG.Title = "Select the wave file you want to play."
dlgResult = openDLG.ShowDialog()
If dlgResult = Windows.Forms.DialogResult.OK Then
theFile = openDLG.FileName
snd.SoundLocation = theFile
sndCheck = True
Else
Exit Sub
End If
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If sndCheck = True Then
snd.Play()
Else
MessageBox.Show("Please select an audio file", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
snd.Stop()
End Sub
End Class
Any help please