Do you mean you are using a wxTextCtrl and want to not process wxKeyEvents?
no, i want to process it's key events and pass the keys to stdin of an external process, but was silly enough to think i could do this from its parent. shortly after i posted realized i can't do this and had to subclass the wxtextctrl and define my own event handler for it, which is a PITA.
Are you trying to make a shell like interpreter?
sort of... i want to redirect I/O from a console program to a dockable window. this will never be perfect because special keys like back space and arrows have behavior that's hard to mimic unless you can get some sort of local echo on stdout. (e.g. backspace will delete characters on a command line, but only as far as the command prompt, so you need to get some feedback from the console about whether to delete the next char or not)
any better ideas than a wxTextCtrl? i thought someone had a wxProcess replacement on the way that might offer some better way of doing this, but got sick of waiting...