-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
x86
-
windows_95, windows_nt
Name: dbT83986 Date: 01/06/99
here is the source code of a little exemple in wich the bug appears
"
import java.awt.*;
public class Fenetre extends Frame {
public static void main(String[] argv){
new Fenetre();}
public Fenetre(){
super("how can a bug occur...");
try {
TextArea theTextArea=new TextArea();
Panel pan1=new Panel();
add(pan1);
pan1.add(theTextArea);
setSize(500,500);
setVisible(true);
} catch (Exception e) {
System.out.println(" an error has occur while building this Frame");
System.out.println(e.getMessage()) ;
e.printStackTrace() ;
}
}
};
"
there is no error message
I don't know if it happens with another langage of keyboard,
but it occur on everyone of the PC I have tried (about 30) and on windows98 also)
(Review ID: 49095)
======================================================================
- duplicates
-
JDK-4218892 Unable to enter '!' and '=A7' characters into AWT via the french =
-
- Resolved
-