I want to change the default look and feel of all the jframe forms I\'ll create from here on out instead of having to manually edit every look and feel code of every jframe I cr
See Changing the Look and Feel After Startup section of the java tutorial. You have to call like:
UIManager.setLookAndFeel(lnfName); SwingUtilities.updateComponentTreeUI(frame); frame.pack();
Where lnfName is the LookAndFeel name and frame is your JFrame Object.
lnfName
frame
JFrame