Why wont the file list box display multiple file types. Here is my line of code:
File1.Pattern = "*.jpg; *.bmp"
It only lists .jpg's, and if I reverse the order, it only lists .bmps.
What is the deal?
Thank you.
fntzlnd
Printable View
Why wont the file list box display multiple file types. Here is my line of code:
File1.Pattern = "*.jpg; *.bmp"
It only lists .jpg's, and if I reverse the order, it only lists .bmps.
What is the deal?
Thank you.
fntzlnd
There is a small error in MSDN (which is presumably where you got that from). You can't have a space in the string, so it should beVB Code:
File1.Pattern = "*.jpg;*.bmp"
Thank you so very much. It is these little things that make me pull my hair out.
Thanks again.
Greg
I blame MS for baldness!