Is it possible to have file filters for multiple extension types?

Posted by Jon Cage on Stack Overflow See other posts from Stack Overflow or by Jon Cage
Published on 2010-05-04T09:50:34Z Indexed on 2010/05/04 10:08 UTC
Read the original article Hit count: 121

Filed under:
|
|

I'm using a standard Windows FileDialog to allow the user to select some files. I'd like to filter out only the file types I'm interested in though (lets call them *.a and *.b). Is there any way to do this without using *.*? I've tried the following but it fails to match any files at all:

this->openFileDialog1->DefaultExt = L"*.a,*.b";
this->openFileDialog1->FileName = L"openFileDialog1";
this->openFileDialog1->Filter = L"My Data Files (*.a,*.b)|*.a,*.b";

© Stack Overflow or respective owner

Related posts about c++-cli

Related posts about openfiledialog