n3zmo hat gesagt.:Ich hab ein JPanel....die Scrollbalken sehe ich rechts aber wenn ich mir dr maus herunterscrolle funktionierts nicht.....ich muss drau klicken und danach ziehen sodass es nach untern geht....
public class TestFrame extends JFrame
{
TestFrame()
{
JTextArea ta = new JTextArea("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
this.getContentPane().add(new JScrollPane(ta));
this.setSize(300,300);
this.setVisible(true);
}
public static void main(String[] args)
{
TestFrame tf = new TestFrame();
}
}