I am new to tkinter. I need to show in a text box some informations about the ongoing process. The code below prints the two messages at exit. How can I refresh the box whenever I need?
Self.txtbox.insert("end", "wait...")
do_something_long() Self.txtbox.insert("end", "done\n")
txtbox