|
-
Oct 1st, 2001, 10:10 AM
#1
File List Box AARRGH!!!
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
-
Oct 1st, 2001, 10:14 AM
#2
PowerPoster
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 be
VB Code:
File1.Pattern = "*.jpg;*.bmp"
-
Oct 1st, 2001, 10:16 AM
#3
THANK YOU!
Thank you so very much. It is these little things that make me pull my hair out.
Thanks again.
Greg
-
Oct 1st, 2001, 10:22 AM
#4
PowerPoster
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|