1

How can I make this scrollpane vertical?

public class scrollpane{
    public static void main(String[]args){
    JFrame f=new JFrame();
    JPanel p=new JPanel();
    JLabel l=new JLabel("SCROLL");
    p.add(l);
    f.add(p);
    f.add(new JScrollPane());
    }
    }
  • 3
    Possible duplicate of [Make a Java JScrollpane only scroll vertically](http://stackoverflow.com/questions/5527487/make-a-java-jscrollpane-only-scroll-vertically) – Madhawa Priyashantha Mar 14 '16 at 08:36

0 Answers0