Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
I’m developing a form in Matisse. When I run the form the look of the form is the Java steel look rather than the look in the preview or development window in myEclipse. Do I have something set incorrectly or is this normal behavior?
Yes you need to set the LNF of your form preferabbly from the main() method of your application before it does anything using the code:
UIManager.setLookAndFeelClassName(UIManager.getSystemLookAndFeel());
or something like that, double check the UIManager.setXXX methods, also you will need to wrap it in a try-catch block.