is it possible to add only a certain file extension to a FileListBox?
like *.txt only.
Thanks.
Printable View
is it possible to add only a certain file extension to a FileListBox?
like *.txt only.
Thanks.
VB Code:
FileListbox1.Pattern="*.txt"
VB Code:
File1.Pattern = "*.txt" File1.Pattern = "*.txt;*.doc;*.whatsoever"
Wow I just posted not even 60 seconds ago! nice :bigyello:
Thanks alot guys appreciate it.