email me at borlaj@portlandschools.org
Fonts
To change the font of a TextField or label (or any component really):
Font font = new Font("Verdana", Font.BOLD, 20); //this is key, you have 3 parameters, last is size textField.setFont(font); textField.setForeground(Color.BLUE);