Hi All,
Just a quickie if using commn dialog how do I only get 1 type of file to display.
I know it is probably quite simple.
Thanks
R
Printable View
Hi All,
Just a quickie if using commn dialog how do I only get 1 type of file to display.
I know it is probably quite simple.
Thanks
R
Are you using the CommonDialog control? What about the Filter property:
Code:Me.CommonDialog1.Filter="The Only File You Can Select (myfile.txt)"
I am using the CommonDialog control and I just want .mp3 files to be visible
VB Code:
CommonDialog1.Filter = "MP3 Files|*.mp3"
Thanks very much - sorted