]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/wxFileDialog.py
fixed data format cast (patch 528965)
[wxWidgets.git] / wxPython / demo / wxFileDialog.py
... / ...
CommitLineData
1
2from wxPython.wx import *
3
4#---------------------------------------------------------------------------
5
6def runTest(frame, nb, log):
7 dlg = wxFileDialog(frame, "Choose a file", ".", "", "*.*", wxOPEN|wxMULTIPLE)
8 if dlg.ShowModal() == wxID_OK:
9 for path in dlg.GetPaths():
10 log.WriteText('You selected: %s\n' % path)
11 dlg.Destroy()
12
13#---------------------------------------------------------------------------
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28overview = """\
29This class represents the file chooser dialog.
30
31"""