JDK-4201056 : "?" appears on the textArea when I press the "!" on a french keyboard
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 1.2.0
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: windows_95,windows_nt
  • CPU: x86
  • Submitted: 1999-01-06
  • Updated: 1999-03-15
  • Resolved: 1999-03-15
Related Reports
Duplicate :  
Description

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)
======================================================================

Comments
EVALUATION This bug is the same as 4218892. I am closing this one as a duplicate of that report. eric.hawkes@eng 1999-03-15
15-03-1999