Re: Repainting

2004-12-29 Thread M.E.Farmer
LutherRevisited wrote: > Thanks, yielding has solved all remaining problems I had with this gui. Thank you for the followup, glad to have helped. Study, learn , pass it on. M.E.Farmer -- http://mail.python.org/mailman/listinfo/python-list

Re: Repainting

2004-12-29 Thread LutherRevisited
Thanks, yielding has solved all remaining problems I had with this gui. -- http://mail.python.org/mailman/listinfo/python-list

Re: Repainting

2004-12-28 Thread M.E.Farmer
LutherRevisited wrote: > I have an application that uses a WxListCtrl to hold data that is updated > extremely fast. When I run my application the listctrl updates so fast that it > practically disappears. Is there a way I can have it update with the user > seeing it update rapidly without the d

Re: Repainting

2004-12-28 Thread Steve Holden
out to all that have been patient with me while helping me learn wxpython. Well, the logical approach would seem to be to freeze, add a hundred items, thaw, freeze, add a hundred items, thaw ... [rinse and repeat]. Basically, control the repainting so it only occurs (relatively) infrequently. regar

Repainting

2004-12-28 Thread LutherRevisited
I have an application that uses a WxListCtrl to hold data that is updated extremely fast. When I run my application the listctrl updates so fast that it practically disappears. Is there a way I can have it update with the user seeing it update rapidly without the dissapearing? Right now I have u