Name: gm110360 Date: 09/02/2003
FULL PRODUCT VERSION :
Two Java version:
java version "1.4.1_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_05-b01)
Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)
FULL OS VERSION :
Windows 2000 version 5.00.2195 Service Pack4
EXTRA RELEVANT SYSTEM CONFIGURATION :
Windows is Multi-language version.
Used language is Japan.
A DESCRIPTION OF THE PROBLEM :
I create a textfield in applet and use IE to open this applet.
It look fine. I type "abcd" in textfield and work fine.
Then I minimize IE and restore it.Although focus is still in textfield, but I can't input any char in textfield. If use appletviewer, It work fine.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1.compile Text.java
2.use IE to run Text.class(you can see a textfield)
3.type some chars in textfield
4.minimize IE and restore it
5.type some chars in textfield but chars can't be show in textfield
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.applet.Applet;
import java.awt.TextField;
public class Test extends Applet
{
public void init()
{
TextField field = new TextField(10);
add(field);
}
}
---------- END SOURCE ----------
(Incident Review ID: 201373)
======================================================================
- duplicates
-
JDK-4877530 Unable to input text into JTextField in 1.4.1_02
- Resolved