What is the code to resume MediaPlayerStream audio? I don't mean just the stop and play, but a way to save where the user was and when they run the app to resume where they left off. Thanks.
Private Sub btnPlayPause_Click
If mp.IsPlaying Then
mp.Pause
btnPlayPause.Text = "paused"
ShowStatus("Paused")
Else
mp.Play
btnPlayPause.Text = "playing"
End If
End Sub
Position doesn't seem to be an option for MediaPlayerStream. Is there a way to save where you left off and resume there next time you start the app when streaming audio?