email me at borlaj@portlandschools.org

Loading
notes previous (10/<10) submit the dump links  
 

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);