Show always last line on textarea
Hi java world,
i have a textarea as viewport of a scrollpane. When new text is added into text area , the lines go under scroll. I want that when the the lines are added, always my last text (last line) is shown. How can i do this.?
scrollPane1 =new JScrollPane();
textArea1 =new JTextArea();
textArea1.setColumns(25);
textArea1.setRows(5);
textArea1.setEditable(false);
textArea1.setFocusable(false);
scrollPane1.setViewportView(textArea1);

