import java.applet.*; import java.awt.*; public class Calc1 extends Applet { Frame window; public void init() { window = new Frame(); // Create a new frame window.setTitle( "JavaCalc" ); // Set its title window.setLayout( new FlowLayout() ); // Use FlowLayout window.setFont( new Font("Helvetica",Font.PLAIN,12) ); window.setBackground(Color.white); window.add( new KeyPad1() ); // And drop in the calculator window.resize( window.preferredSize() ); window.pack(); window.show(); } // init() } // Applet