Re: Tab Key question and Win32lib
- Posted by daryl_vdb at HOTMAIL.COM Aug 15, 2001
- 419 views
>I want to trap the tab key, VK_TAB, in onKeyPress[window] but it doesn't >seem to be triggering. Does Windows or win32lib intercept the tab key >when the control is a window before it gets to my routine? > >Thanks, > >Judith I wanted to do this once, and posted to the list asking about it, but got no reply. So here's what I resolved to do. Create an mle text and position it just outside the window, so it is not visible (preferably to the top or left). When the window recieves focus, set the focus to the mle text. Then recieve key events from the mle text box. Mle text boxes don't intercept the tab key when pressed, so you can detect when tab is pressed. hope that helps, Daryl van den Bink