Hi everyone,
I have a problem to insert text into a text widget in Tkinter.
I want to be able that each time some text is inserted (by means of an action -not directly by the user-) that text is displayed into a new line.
However I can't figure out how to do this because everything I've tried showed me the same result: the new text is appended to the last character of the old text.
I've also tried to use the expression formatting, as shown in the following code excerpt, without success.
Can someone help me with this?
i = "%s: %s" % (self.PSprod, self.PSv)
self.InfoPoint.insert("%s lineend" % INSERT, i)
Thanks a lot,
Gab