import java.applet.Applet;

import java.awt.*;
import java.awt.event.*;

/** Simplest Applet -- get this working first! */

public class HelloDemo extends Applet
{

    private Checkbox
	TB_Local_CB,
	TB_Help_CB,
	TB_MinMax_CB;

    private Button
	TB_Start_B,
	TB_Incr_B,
	TB_Decr_B,
	TB_Stop_B;

    private TextArea textarea;

/** To run as an application,
 * construct it and show it in a frame.
 * This must be a static (class not instance) method,
 * because the instance won't exist until we construct it here. */

  public static void main (String []argv) {

      Frame ff = new Frame ("HelloDemo");
      ff.setBounds (100, 100, 500, 300);

      HelloDemo cd = new HelloDemo ();
      ff.add (cd);
      cd.init ();

      ff.pack ();
      ff.show ();

      cd.invalidate ();
      cd.validate ();
  }

    public HelloDemo () {
	setLayout (new FlowLayout ());

          add (new Button ("Start"));

          add (new Button ("Stop"));

          add (new Checkbox ("Help"));

        add (textarea = new TextArea (12,50));
    }

    public void init () {
    System.out.println ("init");
//	textarea.append ("HelloDemo\n");
//	textarea.append ("ignores all buttons\n");
    }

}
/* <IMG SRC="/cgi-bin/counter">*/
