Hi
I`m not a programmer .But I have an applet that I like to translate it to my native language .So I decided convert any class from AWT to Swing . Here there is a manual for it :
I`ve done those steps but I receive many errors while compiling .
I place one small class here with AWT components :
----------------------------------------------------
import java.awt.Component;
import java.awt.Window;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
private final class AboutDialog$1 extends WindowAdapter
{
public void windowClosing(WindowEvent windowevent)
{
setVisible(false);
dispose();
}
AboutDialog$1()
{
}
}
--------------------------------------------------------
Please convert it to Swing mode for me . I want to find out my problems reason with doing this comparison .
TNX
I`m not a programmer .But I have an applet that I like to translate it to my native language .So I decided convert any class from AWT to Swing . Here there is a manual for it :
I`ve done those steps but I receive many errors while compiling .
I place one small class here with AWT components :
----------------------------------------------------
import java.awt.Component;
import java.awt.Window;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
private final class AboutDialog$1 extends WindowAdapter
{
public void windowClosing(WindowEvent windowevent)
{
setVisible(false);
dispose();
}
AboutDialog$1()
{
}
}
--------------------------------------------------------
Please convert it to Swing mode for me . I want to find out my problems reason with doing this comparison .
TNX