Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
944
Monitor Tab key press
posted

Hi,

I have a TextEditor which i need to trigger an event for in the following circumstances:

1. Text has been changed from when control obtained focus

2. If text has been changed, and the Tab Key is pressed on the keyboard.

How can I capture this Tab Key Press? It does not appear to be a built in event.

Many thanks

Jason

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi Jason,

        The Tab key is handled by the form usually. But in the case of the UltraTextEditor, it has to handle it internally because when it's in edit mode, it shows a child textbox control. So I don't know if it's possible to do this. 

        Why would you want to specifically handle the Tab key, anyway? Wouldn't the same logic apply if the user clicks away from the control as it does when they tab out of it? Typically, you would do validation or processing of this kind in the Validating event. 

Children