Hi Mark, Looking at /ext/richtext/RichText.xs it looks as though the following events are not wrapped.
- EVT_RICHTEXT_CONTENT_INSERTED. - EVT_RICHTEXT_CONTENT_DELETED. - EVT_RICHTEXT_STYLE_CHANGED. - EVT_RICHTEXT_CHARACTER. - EVT_RICHTEXT_DELETE. I tried to wrap them by including... #if WXPERL_W_VERSION_GE( 2, 8, 11 ) EVT( EVT_RICHTEXT_CHARACTER, 3, EVT_RICHTEXT_CHARACTER ) EVT( EVT_RICHTEXT_DELETE, 3, EVT_RICHTEXT_DELETE ) EVT( EVT_RICHTEXT_STYLE_CHANGED, 3, EVT_RICHTEXT_STYLE_CHANGED ) EVT( EVT_RICHTEXT_CONTENT_INSERTED, 3, EVT_RICHTEXT_CONTENT_INSERTED ) EVT( EVT_RICHTEXT_CONTENT_DELETED, 3, EVT_RICHTEXT_CONTENT_DELETED ) #endif ... below the other entries in RichText.xs, but I get a compiler message saying the new entries are not declared. It looks to me as though everything is correctly declared in the widgets file "richtextctrl.h". What have I missed out? Thanks and regards Steve