I have a multi line, read only TextCtrl in wxpython I know how to set values using
myTextCtrl.SetValue(\'hello\')
But this will change wha
myTextCtrl.AppendText('hello')
This does not add a newline character on its own, so you will have to include that in the string if needed.