Home > Back-end >  open certain files with OpenFileDialog
open certain files with OpenFileDialog

Time:11-29

I have a button in my program that when clicked opens OpenFileDialog and show all *.jpeg files that are in a certain path. Now, I want to show only those photo files that have "water" in their names not all files. please guide me.

CodePudding user response:

Changing your filter from

filter = "Images |*.jpeg"

to

filter = "Images of Water |*water*.jpeg"
  • Related