>Tkinter has a file acces dialog available with the same API on all platforms.
>It is also mapped to the standard dialog on Windows.
> Since Tkinter is certainly installed by default with Python, if a file dialog
> is everything you need, you probably don't have to look further.
Great :)
Wout
For simple, it's hard to beat EasyGUI: http://www.ferg.org/easygui/
Bob
--
http://mail.python.org/mailman/listinfo/python-list
Wouter van Ooijen wrote:
>I have a tool in Python to which I want to add a small GUI. The tools
> currently runs everywhere PySerial is supported. I need a file-access
> dialog. What is the preffered way to to this? Is there a
> platform-independent file-access dialog available, or should I use th
On Fri, 26 Aug 2005 07:52:06 GMT, Wouter van Ooijen (www.voti.nl) <[EMAIL
PROTECTED]> wrote:
> I have a tool in Python to which I want to add a small GUI. The tools
> currently runs everywhere PySerial is supported. I need a file-access
> dialog. What is the preffered way to to this? Is there a
>
Well, I only know how to do it with Qt:
Dialog = QFileDialog(self.filedir, 'Python files (*.py)', self, 'open
file dialog')
self.filename = str( Dialog.getOpenFileName())
I don't think PyQt is available for Qt4 on windows yet.
You might be ablt to use this:
http://www.quadgames.c