so to play ONE sound you do this:
Sub PlayBackgroundSoundResource()
My.Computer.Audio.Play(My.Resources.Waterfall, AudioPlayMode.WaitToComplete)
End Sub
as explained HERE. But what if I have 2 or more sounds, what are the arguments of PlayBackgroundSoundResource() to be able to call different sounds for different reasons?
Sub PlayBackgroundSoundResource()
My.Computer.Audio.Play(My.Resources.Waterfall, AudioPlayMode.WaitToComplete)
End Sub
as explained HERE. But what if I have 2 or more sounds, what are the arguments of PlayBackgroundSoundResource() to be able to call different sounds for different reasons?