[wxPython] AttributeError: AddPendingEvent (wxEvtHandler)

I'm trying to call the AddPendingEvent method of wxTextCtrl (defined in
wxEvtHandler), but I get an AttributeError. Is AddPendingEvent not
implemented in wxPython?

David Fox

···

____________________________________________________________________
Get your own FREE, personal Netscape WebMail account today at http://home.netscape.com/webmail
_______________________________________________
wxPython-users mailing list
wxPython-users@lists.sourceforge.net
http://lists.sourceforge.net/mailman/listinfo/wxpython-users

I'm trying to call the AddPendingEvent method of wxTextCtrl (defined in
wxEvtHandler), but I get an AttributeError. Is AddPendingEvent not
implemented in wxPython?

What version of wxPython are you using? I thought that method was added for
2.2.1. Regardless, you can accomplish the same thing by calling:

    wxPostEvent(textCtrl, event)
    wxWakeUpIdle()

···

--
Robin Dunn
Software Craftsman
robin@AllDunn.com
http://wxPython.org Java give you jitters?
http://wxPROs.com Relax with wxPython!

_______________________________________________
wxPython-users mailing list
wxPython-users@lists.sourceforge.net
http://lists.sourceforge.net/mailman/listinfo/wxpython-users