Please help! I have a java program (extends Frame not Applet). The java program
is on an Unix OS. Is there a way i can launch that GUI java app from Windows
NT and see the GUI displays in the NT environment? Thanks.
Printable View
Please help! I have a java program (extends Frame not Applet). The java program
is on an Unix OS. Is there a way i can launch that GUI java app from Windows
NT and see the GUI displays in the NT environment? Thanks.
Why? My suggestion would be to get the Java JRE, put it and your program on
the NT system, and run it there.
PC2
tq <tr_abc@yahoo.com> wrote in message news:3a8cc69c$1@news.devx.com...
>
> Please help! I have a java program (extends Frame not Applet). The java
program
> is on an Unix OS. Is there a way i can launch that GUI java app from
Windows
> NT and see the GUI displays in the NT environment? Thanks.
Hi,
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel";);
SwingUtilities.updateComponentTreeUI(this);
after you define your GUI
or change the default.laf property in Swing.properties file
Hope this helps
Regards
Rajkamal
"tq" <tr_abc@yahoo.com> wrote:
>
>Please help! I have a java program (extends Frame not Applet). The java
program
>is on an Unix OS. Is there a way i can launch that GUI java app from Windows
>NT and see the GUI displays in the NT environment? Thanks.