Link to home
Start Free TrialLog in
Avatar of adrianmak
adrianmak

asked on

java gui

I use microsoft visual j++ to design the graphic interface and use some ms java gui.
Is there any tools that can convert the gui interface java code to pure 100% java compatible code ?
so that I can compile with sun jdk
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ovi
Ovi

From what I've understant you are using some specific microsoft java classes on your GUI which are not part of the Sun JDK. What you can do is to include the used Microsoft calsses into your project. This solution is very "paintful" if the dependencies on the ms package are much, and this will make your project very big. Another solution is to stay away from the ms package and work only with the standard Java Api from Sun.
Avatar of adrianmak

ASKER

so as what is said , any tool that can convert ms java gui to standard sun api e.g. swing without manual conversion
NO