Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Das Problem ist, wenn ich es editable = false setze, funktioniert nichts mehr...
Als Lösungsansatz hätte ich jetzt, alle Eingaben abzufangen, damit man die Copy Funktion verwenden kann.
Hat jemand ne bessere Idee?
Hi
Das Problem ist, wenn ich es editable = false setze, funktioniert nichts mehr...
Als Lösungsansatz hätte ich jetzt, alle Eingaben abzufangen, damit man die Copy Funktion verwenden kann.
Hat jemand ne bessere Idee?
Bei mir funktioniert es nach wie vor nicht... Kann es sein, dass du AWT verwendest?
public static void main(String[] args) throws Exception {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JFrame frame = new JFrame();
JPanel panel = new JPanel();
final JTextArea area = new JTextArea(20,20);
area.setText("Hallo Welt!");
area.setEditable(false);
panel.add(area);
frame.add(panel);
frame.pack();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}