Python – Windows progress bar in python’s Tkinter

progress-barpythonpython-2.6tkinterwindows

Is there any way in python's Tkinter, bwidget or anything similar to show a Windwos' default progress bar?
I already know the bwidget.ProgressBar, but it produces an ugly progress bar while I mean showing a valid windows progress bar – the green, glowing one:

http://imageshack.us/photo/my-images/853/unledtph.png/

I need it because that way Windows will automatically show the progress of my program in the task bar. Plus, it looks better.

Best Answer

If you are using a modern (2.7+) version of Tkinter you can try the ttk.ProgressBar which is part of Tkinter.