How to create a non-editable text box with no cursor in wxPython to dump text in?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 4 down vote accepted

wx.StaticText

You could also use a regular TextCtrl with the style TE_READONLY but that shows a cursor and the text looks editable, but it isn't.

link|improve this answer
@tom10, thanks, TE_READONLY is what I'm looking for. Do you know how to dynamically add text there? – Alex Aug 10 '09 at 13:42
1  
Glad to help. myctrl.AppendText("new text") will append text. (Making it non-editable will still allow changes to the text by the program, btw.) – tom10 Aug 10 '09 at 13:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.