I would like to offer multiple extensions in my SaveFileDialog. I would like to have the following extensions:
Please see my posted answer for the solution. It was a quick fix - and a fairly dumb mistake.
SFD.Filter = "EXE (*.exe) |*.exe |JPEG (*.jpg)|*.jpg | MP3 (*.mp3)|*.mp3 | WAV (*.wav) |*.wav ";
Using the above filter, when the file type is changed, the extension is appended to the filename. I would prefer that the file extensions replace one another.
An example of what the dialog filename might look like after switching file types:
OutputFile.exe .jpg .mp3 .wav
Thank you for any help,
Evan
I would prefer that the file extensions replace one another? do you mean for example the file name chosen isOutputFile.exeand you want it to be replaced byOutputFile.jpg? – Jalal Aldeen Saa'd Aug 10 '11 at 3:29