Author: petoeterpetoeter Date: Feb 24, 2007 06:45
Hi,
The aim is to write some code so , starting from an applet, the user
can a make a choice (by radio buttons and an OK button), to let pop
up different frames.
Hereby my (simpified) code. What's wrong, no way to generate a frame?
Thanks,
(as a am a novice, all suggestions are wellcome)
import java.awt.* ;
import javax.swing.*;
import java.awt.event.*;
public class test extends JApplet implements ItemListener {
JRadioButton radio1;
ButtonGroup groep;
JButton knop;
int a;
public void init() {
Container...
|