I'm trying to add a Vertical scrolling my java programs textarea. I am using this code to create my JScrollPane:
console = my textarea.
I am also Declaring JScrollPane vertical;
vertical = new JScrollPane(console);
vertical.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
vertical.setVisible(true);
this.add(vertical);
EDIT:
View of program:
I'm new to Java but shouldn't that work and add a Vertical scroll bar to my textarea
What am I doing wrong?
Thanks for any help.