Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
117 views

How come this way of ending a thread is not working?

I just came out with my noob way of ending a thread, but I don't know why it's not working. Would somebody please help me out? Here's my sample code: import wx import thread import time import ...
1
vote
0answers
76 views

Reseting text style when pasting/droping text into wx.TextCtrl

I have MyTextCtrl(wx.TextCtrl) class that always sets wx.TE_RICH style for its objects (I need colourful letters :) and support for arabic letters), but when someone pastes or drops formatted text ...
1
vote
3answers
479 views

Deleting lines from wx.TextCtrl

I am using a wx.TextCtrl to output text from a network daemon. As the output is quite verbose, the size of text in the TextCtrl can become huge (BTW is there any limitation on the size of the contents ...
0
votes
1answer
88 views

wxpython RichtextCtrl event bindings on buttons/images

Just wondering whether there is any provision/method to bind clicks on images/(or include a button) to result into some events. Also is there any kind of way to draw a StaticLine kind of thing in a ...
0
votes
2answers
616 views

How do I make wx.TextCtrl multi-line text update smoothly?

I'm working on an GUI program, and I use AppendText to update status in a multi-line text box(made of wx.TextCtrl). I noticed each time there's a new line written in this box, instead of smoothly ...
0
votes
2answers
2k views

How do I get the scroll position / range from a wx.TextCtrl control in wxPython

I have a little logging app (written in wxPython) that receives data from a bit of kit we're developing, and I want to display the text in a scrolling window. As it stands I'm using a wx.TextCtrl for ...