I am Trying to add a JscrollPane to my JTextPane and it does not show up when i run it. I have searched the internet and most answers do not help at all.
This is how i implemented it in my code
    JTextPane t = new JTextPane();
    JScrollPane s = new JScrollPane(t);
    s.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
    t.setBounds(10,50,60,70);
    s.setBounds(10,50,60,70);
    Pane.add(t);
    Pane.add(s);