Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4173679

ALT+NUMPAD doesn't work on awt.TextField.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.1.7
    • 1.1.5, 1.1.6, 1.2.0
    • client-libs
    • b02
    • x86
    • windows_95, windows_nt



        Name: clC74495 Date: 09/15/98


        This is an Oracle Bug : 717130

        In Windows, typing ALT+NUMPAD (i.e. ALT+6+5) will get an 'A'
        character. But it doesn't work on AWT TextField.

        Here is a simple Java testcase:

        import java.applet.*;
        import java.awt.Event;
        import java.awt.*;
        import java.awt.Component;
        import java.awt.event.KeyListener;
        import java.awt.event.KeyEvent;

        public class Nagen extends Applet implements KeyListener {

            TextField tx = new TextField("", 10);
            
            public void init() {
                this.add(tx);
                tx.addKeyListener(this);
                tx.requestFocus();
            }
            public void keyPressed(KeyEvent event) {
                System.out.println("Its a KeyPressed event with Value " + event.getKeyChar());
                System.out.println("The keycode is " + event.getKeyCode());
            }

            public void keyTyped(KeyEvent event) {
                System.out.println("Its a KeyTyped event with Value " + event.getKeyChar());
                System.out.println("The keycode is " + event.getKeyCode());
            }

            public void keyReleased(KeyEvent event) {
                System.out.println("Its a KeyReleased event with Value " + event.getKeyChar());
                System.out.println("The keycode is " + event.getKeyCode());
            }

        }
        (Review ID: 38823)
        ======================================================================

              rkhansunw Robi Khan (Inactive)
              clucasius Carlos Lucasius (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: