I have two Forms. frmLogin and frmMain. I try to change its physical appearance through LookandFeel. Here is the code:
Code:try {
UIManager.setLookAndFeel(new NimbusLookAndFeel());
}
catch (Exception e)
{ e.printStackTrace();}
This code works on frmMain controls but not in frmLogin. I thought that the problem was in property because I changes some but I already change everything in form's property then try if LookandFeel works but still same result. And what makes me more confusing is when I put a JInternalFrame and JOptionDialog under frmLogin, JInternalFrame is in "METAL" LookandFeel and when JOptionDialog pops up it is "NIMBUS" look.
Thank you in advance,
geje

