I am using VS 2013 and getting an error when trying to deploy an WAV in my code.
The error is in this line:
open.Filter= "Wave File (".wav)|".wav;";
Two things I see in your code:
*
wildcard character instead of "
(which solves the first isssue).So you probably want open.Filter = "Wave File (*.wav)|*.wav";
.