Problems Look and Feel of Desktop App

I'm using Studio Enterprise 8 to build a desktop application that will run under XP.I notice when forms are displayed via Test Form they are far more "standard looking" than when the application is run.What can be done to make application more XP-like, a big concern for users?
[300 byte] By [funk] at [2007-11-26 8:53:49]
# 1

When the forms are displayed in the editor they inherit the NetBeans Look and Feel. However when they are run standalone they most likely use the Java default Look and Feel. In order to tell the app to use the platform's default L&F execute the following code before showing any of the frames:

try {

UIManager.setLookAndFeel(

UIManager.getSystemLookAndFeelClassName());

} catch (Exception e) { }

The following link may also be of interest: http://java.sun.com/docs/books/tutorial/uiswing/misc/plaf.html

KSorokin at 2007-7-6 22:48:47 > top of Java-index,Development Tools,Java Tools...
# 2
Thanks that did it! Appreciated
funk at 2007-7-6 22:48:47 > top of Java-index,Development Tools,Java Tools...