Event name for when a TextCtrl is Updated

Hello

I am trying to find out the type of message(Event) that is sent
whenever a wx.TextCtrl() has a new character added to it, a character
deleted from it or when some text is cut or paste onto it?

I have looked over the WxPython docs website & cant seem to identify
the events associated with these actions?
Maybe its something like EVT_TE_UPDATE?

Some extra info that may be required, I want to call a function to
read the contents in the TextCtrl whenever these events occur so I
need to bind it to this event & the TextCtrls I am using are both
multiline & single line(meaning some are multiline & some single)

Hi,

···

On Fri, Oct 1, 2010 at 11:14 PM, Sascha <nilly16@yahoo.com> wrote:

Hello

I am trying to find out the type of message(Event) that is sent
whenever a wx.TextCtrl() has a new character added to it, a character
deleted from it or when some text is cut or paste onto it?

I have looked over the WxPython docs website & cant seem to identify
the events associated with these actions?

Must have been looking in the wrong place :slight_smile: The C++ docs are usually
the best place to see the listing of all styles and events associated
with a control

http://docs.wxwidgets.org/2.8/wx_wxtextctrl.html#wxtextctrl

Cody

Hi,

···

-----Original Message-----
From: wxpython-users@googlegroups.com [mailto:wxpython-
users@googlegroups.com] On Behalf Of Sascha
Sent: Friday, October 01, 2010 9:15 PM
To: wxPython-users
Subject: [wxPython-users] Event name for when a TextCtrl is Updated

Hello

I am trying to find out the type of message(Event) that is sent
whenever a wx.TextCtrl() has a new character added to it, a character
deleted from it or when some text is cut or paste onto it?

I have looked over the WxPython docs website & cant seem to identify
the events associated with these actions?
Maybe its something like EVT_TE_UPDATE?

Some extra info that may be required, I want to call a function to
read the contents in the TextCtrl whenever these events occur so I
need to bind it to this event & the TextCtrls I am using are both
multiline & single line(meaning some are multiline & some single)

--
To unsubscribe, send email to wxPython-
users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en

[alm>]

I think what you want is here:

http://xoomer.virgilio.it/infinity77/wxPython/Widgets/wx.TextCtrl.html

Al