Laf for windows / lunix

Hi,

Our solution is mainly run on Windows.
But there are a few linux users.
We use Smart Client.
They have some gui ( colors, … ) issues.

Is it possible to automaticaly assign a different Laf for linux clients and for Windows clients,
without the user having to select a Laf.

Regards,

Hi Hans,

I recently bumped into this problem again and used this:

var _jxSwingUI = new Packages.javax.swing.UIManager();
var _sLaFName = _jxSwingUI .getCrossPlatformLookAndFeelClassName();
_jxSwingUI .setLookAndFeel(_sLaFName); //set Look and Feel

Depending on any beans you use, you need to change more default settings (like fonts) in swing.

Hope this helps.

Marc,

Thanks !!