How to activate file typ filter in wxPython file browser
I am using wxFileDialog() call for file browsing,I want it to filter all unwanted files in display.

Generally you tell the dialog which files you want to display ...

dlg = wx.FileDialog(self, "Open a file")
        dlg.SetStyle(wx.OPEN)
        wildcard = "Python files (.py)|*.py|"   \
                   "PythonW files (.pyw)|*.pyw|" \
                   "All files (*.*)|*.*"
        dlg.SetWildcard(wildcard)
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.