Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/11/2003, 18:02
molotis
 
Fecha de Ingreso: septiembre-2003
Mensajes: 14
Antigüedad: 21 años, 6 meses
Puntos: 0
JScrollPane con JTextArea, ayuda por favor!!!

editor= new JTextArea();
editor.setBackground(Color.green);
editor.setEditable(false);
editor.setLineWrap(true);
editor.setWrapStyleWord(true);
barras = new JScrollPane(editor,
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane. HORIZONTAL_SCROLLBAR_AS_NEEDED);
barras.setViewportView(editor);
getContentPane().add(editor,BorderLayout.CENTER);
getContentPane().add(barras,BorderLayout.CENTER);


Tengo sto puesto, pero sigue sin mostrarte las barras de desplazamiento, alguien me puede ayudar??

Muchas gracias!!