Hello,
I build my java desktop application using NetBeans 6.7, visually. So I click on the Frame -> Events -> KeyTyped and I add a new handler.
The problem is the key events are not detected! My components are Swing components. Why is this happening?? :(
private void formKeyTyped(java.awt.event.KeyEvent evt) {
System.out.println("key typed "+evt.getKeyCode());
}
Please somebody help!