X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec873c943d71f0d5f13e3398557071448cda6c23..a4027e74873007e3430af3bd77019bcab76f6c04:/wxPython/samples/wxPIA_book/Chapter-09/file_box.py?ds=inline diff --git a/wxPython/samples/wxPIA_book/Chapter-09/file_box.py b/wxPython/samples/wxPIA_book/Chapter-09/file_box.py deleted file mode 100644 index ff46e39701..0000000000 --- a/wxPython/samples/wxPIA_book/Chapter-09/file_box.py +++ /dev/null @@ -1,17 +0,0 @@ -import wx -import os - -if __name__ == "__main__": - app = wx.PySimpleApp() - wildcard = "Python source (*.py)|*.py|" \ - "Compiled Python (*.pyc)|*.pyc|" \ - "All files (*.*)|*.*" - dialog = wx.FileDialog(None, "Choose a file", os.getcwd(), - "", wildcard, wx.OPEN) - if dialog.ShowModal() == wx.ID_OK: - print dialog.GetPath() - - dialog.Destroy() - - -