views:

285

answers:

1

Is it possible to remove the vertical scroll bar in a JScrollPane?

+4  A: 

Try something like this:

JScrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);
Nick Craver