Rob Bamforth's Blog
Java, SQL,T-SQL, MySQL, Networking, SQL Server, PHP, COM, DBA, ODBC

Posts Tagged ‘look and feel’

Setting the JAVA Look and Feel

October 17, 2008

The following code should be contained in the main method fo the main class.
You DO NOT need to set the look and feel of ever swing class in your project.
The look and feel in the main method provides scope accress all swing classes of the application.
Add the following import for the UI Manager.
import javax.swing.UIManager;
Add the [...]