Hi,

I'm sure this has been done to death but I need some help to play a WAVE file.

I'm using Windows 11 and VB.NET 2026.

Code:
Try
    'My.Computer.Audio.Play("e:\MyStuff\TestTone.wav", AudioPlayMode.WaitToComplete)
    My.Computer.Audio.Play(A, AudioPlayMode.WaitToComplete)
Catch ex As Exception
    Stop
End Try

If tried both a file and a byte array, no luck.

Any ideas?