• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

CTRL+TAB in JComponent

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
Normally when we press CTRL+TAB, the focus goes to the next focusable component in the Frame/Window. This has been taken care by FocusManager(jdk1.3.1). But I want to perform some other work when we press CTRL+TAB(I don't want to move the focus to the next component-inshort I don't want the FocusManager to handle that). This I can do by attaching a key listener to the component. But the problem is FocusManager consumes the event and hence my listeners won't get that KeyEvent.
So anybody know how to do that.
Thanks in advance,
Jana
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic