|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
I just ran into a weird issue
![]() When I open a dialog box to open file, the files without an extension aren't listed. So foo.bar would appear but not foo Here's the line I used : dlg = wxFileDialog(self, "Choose a file", ".", "", "*.*", wxOPEN) |
|
#2
|
||||
|
||||
|
Not a big GUI user but.. could it have anything to do with the '.' option you have in there? after all the only difference between the two names is one has a period and the other doesn't
try changing the line to... dlg = wxFileDialog(self, "Choose a file", "", "", "*.*", wxOPEN) just a guess though ![]() Mark. |
|
#3
|
|||
|
|||
|
Nope... Didn't worked...
|
|
#4
|
|||
|
|||
|
I found my problem. It was the *.* filter. The only file displayed where the one with anything, a dot, then anything.
I changed it for * and it worked ! :-) |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Python Programming > Issue with file without extension with wxpython |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|