How to set a scrollbar at the top?!?!?!
How do I get a scrollbar to start at the top - right now it is at the bottom of the text field when the JDialog is opened (A silly defaul if you ask me - why would it start as the bottom of a text area?!)
JTextArea limitInfoText =new JTextArea(LIMIT_INFO, 8, 25);
limitInfoText.setEditable(false);
limitInfoText.setLineWrap(true);
limitInfoText.setWrapStyleWord(true);
limitInfoText.setMargin(new Insets(5, 3, 5, 3));
limitInfoText.setToolTipText("Limit information");
JScrollPane limitInfoScroll =new JScrollPane(limitInfoText);
infoPane.add(limitInfoScroll);
// ....
this.getContentPane().add(infoPane, BorderLayout.CENTER);

