FileListBox Pattern > More Than One?
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?
Re: FileListBox Pattern > More Than One?
2 problems with the way you are doing it. here's the corrections:
1. Put a * in front of both of them
2. Separate them with a semi-colon, not a comma