Oct 15, 2007 #1 Oneleg Programmer Oct 15, 2007 10 SE How can I capture the TAB key if it's pressed inside an editbox? I try to capture it in OnKeyPress, but when I press TAB it doesn't even enter that code... I have tabstop = false because I want to treat the TAB in my own way. But where can I do that?
How can I capture the TAB key if it's pressed inside an editbox? I try to capture it in OnKeyPress, but when I press TAB it doesn't even enter that code... I have tabstop = false because I want to treat the TAB in my own way. But where can I do that?
Oct 15, 2007 Thread starter #2 Oneleg Programmer Oct 15, 2007 10 SE Found it out... Always try "everything".. I had tried to capture it in OnKeyDown but it didn't work. But I can capture it in OnKeyUp! Problem solved.. Upvote 0 Downvote
Found it out... Always try "everything".. I had tried to capture it in OnKeyDown but it didn't work. But I can capture it in OnKeyUp! Problem solved..