Re: Progress Box or Bar in Windows

2006-12-31 Thread tubby
cyberco wrote: > Go for wxPython, it'll fulfill all your GUI needs. Handsdown the best > GUI toolkit I ever ran into. Thanks a lot! I had no idea wxPython was so easy to use. I added a progress bar from wx to the app. Less than 20 lines of code and it only took about 5 minutes! -- http://mail.p

Re: Progress Box or Bar in Windows

2006-12-31 Thread cyberco
Go for wxPython, it'll fulfill all your GUI needs. Handsdown the best GUI toolkit I ever ran into. It can't get much simpler than: wx.MessageBox('hi') And there are tons of readymade dialogs and progressbars in the library. Check out the demo.py under the wxPython installation dir to see demos (a

Re: Progress Box or Bar in Windows

2006-12-31 Thread dkinakin
Not that I want to suggest a completely different solution; however, I have used: http://www.averdevelopment.com/python/EasyDialogs.html to add simple file open dialogs, message boxes, and progress bars to many of my scripts. You may want to have a look at it. It's easy to install and really sim

Progress Box or Bar in Windows

2006-12-30 Thread tubby
Hi guys, I have a Python script that I've prettied-up for Windows users by adding things like shell.SHBrowseForFolder and win32gui.MessageBox, etc. In short, it looks like this: 1. Pretty window where user can browse for folder. (instead of typing path into cmd prompt) 2. win32gui.MessageBox