how can i filter for *.wav and *.au and *.snd.....etc. so like it will say "Audio" and it filters for many extenctions
Thank You
Printable View
how can i filter for *.wav and *.au and *.snd.....etc. so like it will say "Audio" and it filters for many extenctions
Thank You
Create a form. Add a command button name command1.
Then add the CommonDialog control. Past the following code and this might work for you.
[vbcode]
Private Sub command1_Click()
With CommonDialog1
.Filter = "Executable file (*.exe)|*.exe;|DOS Batch file (*.bat)|*.bat"
.ShowOpen
End With
End Sub
Hope those works for you.
Amendra.