Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
What do you mean by I would prefer that the file extensions replace one another? do you mean for example the file name chosen is OutputFile.exe and you want it to be replaced by OutputFile.jpg? – Jalal Aldeen Saa'd Aug 10 '11 at 3:29
@Jalal yes this is what I mean. – user725913 Aug 10 '11 at 10:38

2 Answers

If you want to combine all extensions to one selection filter, try

SFD.Filter = "EXE (*.exe), JPEG (*.jpg), MP3 (*.mp3), WAV (*.wav)|*.exe;*.jpg;*.mp3;*.wav";

For reference, check out the remarks section of the MSDN page for FileDialog.Filter

share|improve this answer
Sorry for the misunderstanding but I want there to be a selection of different filters. For example, if you open up paint and go to save your work you have a selection from around 10 different filters. This is what I want. – user725913 Aug 10 '11 at 10:39

The issue with my original code is that I had spaces between the " | " marks. Please see my answer below for a comparison.

SFD.Filter = "EXE (*.exe)|*.exe|JPEG (*.jpg)|*.jpg|MP3 (*.mp3)|*.mp3|WAV (*.wav)|*.wav ";

Notice how there are no spaces.

Thank you, Evan

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.