View Single Post
  #2 (permalink)  
Old 11-21-2007, 10:29 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,222
hardwired is on a distinguished road
Code:
import javax.swing.*; public class Test { public static void main(String[] args) { System.setProperty("swing.aatext", "true"); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(new JScrollPane(new JTextPane())); f.setSize(500,400); f.setLocation(200,200); f.setVisible(true); } }
Reply With Quote