Look & Feel
Hi all
I used following code part for changing look & feel in my Java Swing Program. But I didn't change the look & feel of the program also didn't give any error
try
{
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
//UIManager.setLookAndFeel("javax.swing.plaf.mac.MacLookAndFeel");
SplashScreenMain ss = new SplashScreenMain();
login ln = new login();
}
catch (Exception e)
{
e.printStackTrace();
}
Anyone can help me to Set Look & feel In my program?
Thankz

