1. Multiple applets instances confused coderanch.com |
2. making an instance of an applet in an applet coderanch.com |
3. is JApplet an instance of ActionListner according to this code? coderanch.comThis is a code which demonstrates the use of JRadioButton // Demonstrate JRadioButton import java.awt.*; import java.awt.event.*; import javax.swing.*; /* */ public class JRadioButtonDemo extends JApplet implements ActionListener { JLabel jlab; public void init() { try { SwingUtilities.invokeAndWait( new Runnable() { public void run() { makeGUI(); } } ); } catch (Exception exc) { System.out.println("Can't create ... |