How to show proccess output in text box in other frame using Python tkinter [closed] How to show proccess output in text box in other frame using Python tkinter [closed] tkinter tkinter

How to show proccess output in text box in other frame using Python tkinter [closed]


First, you have to make the output frame available or else you can't access it later:

self.output = tk.LabelFrame(self, text="Output", height=350, width=70)self.output.pack(side=tk.BOTTOM, fill="both", expand=True)

Then, in the testPing() class pingURL() method you can pack the Text() widget in the output labelframe:

text = tk.Text(self.controller.output, height=5, width=100, wrap=tk.WORD)

I don't know about using threading or multiproccess. In general I think you will get a better response if you post questions for each of your problems instead of listing them in the same question.