Re: two problems
From: Roedy Green (look-at-the-website_at_mindprod.com)
Date: 04/13/04
- Next message: Roedy Green: "Re: running jar files from web. - Tomcat?"
- Previous message: Roedy Green: "Re: Tomcat - symbolic link for WEB-INF/classes directory not working"
- In reply to: Christophe Vanfleteren: "Re: two problems"
- Next in thread: pageV: "Re: two problems"
- Reply: pageV: "Re: two problems"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 12 Apr 2004 23:55:05 GMT
On Mon, 12 Apr 2004 23:12:25 GMT, Christophe Vanfleteren
<c.v4nfl3t3r3n@pandora.be> wrote or quoted :
>> UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName () );
>> don't seem to have an effect.
you want something like this before you create any JFrames.
public static void main ( String[] args )
{
try
{
if ( Config.LOOK_AND_FEEL != null )
{
UIManager.setLookAndFeel( Config.LOOK_AND_FEEL );
}
ToolTipManager.sharedInstance().setInitialDelay( 1000 );
JFrame.setDefaultLookAndFeelDecorated ( true );
-- Canadian Mind Products, Roedy Green. Coaching, problem solving, economical contract programming. See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
- Next message: Roedy Green: "Re: running jar files from web. - Tomcat?"
- Previous message: Roedy Green: "Re: Tomcat - symbolic link for WEB-INF/classes directory not working"
- In reply to: Christophe Vanfleteren: "Re: two problems"
- Next in thread: pageV: "Re: two problems"
- Reply: pageV: "Re: two problems"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|