I have a "FileListBox", and want it to only show certain file extensions. but so far i have only been able to limit it to one extention, by using the "Pattern" property, i can't make it work with more than one though.
file.Pattern = "*.jpg" DOES work
file.Pattern = "*.jpg,.gif" does NOT work, and i need it to show more than 1 extention.

Little help?