Working on a text editor. I want the tab key to insert "\t". I managed to make this happen, but tab also changes focus. From what I can see, I can't use txtEdit.SetOnKey, so I catch keys from the whole app.
Can I cancel a key event? Is there any way to do this?
Thanks in advance!
I read about DisableKeys somewhere, but I thought my app wouldn't get any key events from that key. As you said, it does.
My TextEdit is in Tab happiness land!
Thank you.