g3nair
g3nair

Reputation: 147

how to make scrollbar start at the bottom?

I'm creating a java chat application using jFrame. I'm using a JScrollPane to scroll the text area. All the new messages are added at the bottom, but the scroll bar starts at the top. How do I make it start at the bottom?

Upvotes: 0

Views: 963

Answers (1)

Jason C
Jason C

Reputation: 40336

You can force it to scroll to the bottom after adding a message by scrolling its vertical scrollbar directly, e.g.:

JScrollBar vScrollBar = myScrollPane.getVerticalScrollBar();
vScrollBar.setValue(vScrollBar.getMaximum());

Upvotes: 1

Related Questions