Reputation: 11
I am making a software in tkinter python 3.3.2. I want my program to work in this way:
When I import tha data (txt file) I want my program shows a progressbar where indicates the software is reading the data
When the software reads the data and apply the "function", I want the software shows a new progressbar where indicates the software is applying the function on the data
Then the software apply the function, it exports a txt file with the results, so I want the software shows a new progressbar where indicates the software is exporting the new txt file with the results.
I want my program show the progressbar when is reading the data, when is applying the function, and when exports a new txt file with results.
Any ideas?
Help please!!!
Upvotes: 0
Views: 432
Reputation: 591
http://effbot.org/tkinterbook/canvas.htm says that:
"Another common use for this widget is to implement various kinds of custom widgets. For example, you can use a canvas as a completion bar, by drawing and updating a rectangle on the canvas."
Upvotes: 1