G
Gast
Gast
Hallo,
habe ein Problem.
Das hier ist mein kleines Programm:
Wenn ich das Prog starte gibt es 2 unterschiedliche Versionen. Manchmal kommt 1., doch meistens die 2. Version.
1. (richtige) Version:
http://img184.imageshack.us/my.php?image...irmfoto2og5.png
2. (falsche) Version:
Warum ändert sich die Darstellung andauernd?
mfg
habe ein Problem.
Das hier ist mein kleines Programm:
Code:
import javax.swing.*;
import java.awt.event.*;
public class HelloSwingFrame
{
public static void main(String[] args) {
JFrame f = new JFrame( "Fenster" );
f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
f.setSize( 500, 200 );
f.setVisible( true );
f.toFront();
JTextField t = new JTextField( 5);
t.setSize(100,17);
t.setLocation(10,20);
f.add(t);
JButton b = new JButton( "Ende" );
b.setSize(100,20);
b.setLocation(200,150);
f.add( b );
ActionListener al = new ActionListener() {
public void actionPerformed( ActionEvent e ) {
System.exit( 0 );
}
};
b.addActionListener( al );
System.out.println(t.getText());
}
}
Wenn ich das Prog starte gibt es 2 unterschiedliche Versionen. Manchmal kommt 1., doch meistens die 2. Version.
1. (richtige) Version:
http://img184.imageshack.us/my.php?image...irmfoto2og5.png
2. (falsche) Version:
Warum ändert sich die Darstellung andauernd?
mfg