Hi,
I have see the example but I haven't understand how can I insert the
event key in my application.
bye
NighTiger wrote:
Hi,
I have see the example but I haven't understand how can I insert the
event key in my application.
Can I assume you mean how to insert a string in a wxTextCtrl? (Please always give enough details in your messages for us to actually answer your question without having to read your mind.)
If you have a value you want to insert or set into a wxTextCtrl then just call the wxTextCtrl's methods that update its value. For example,
self.text.SetValue(newValue)
or
self.text.WriteText(stringToInsert)
ยทยทยท
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!