]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/samples/wxPIA_book/Chapter-09/file_box.py
move wxPython to new trunk
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-09 / file_box.py
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 (file)
index ff46e39..0000000
+++ /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()
-    
-
-