Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Applet Add Java source code
#1

Code:
import java.awt.*;
import java.applet.*;
class AppletAdd extends Applet
{
  TextField A,B;
  public void init()
  {
  A = new TextField(8);
  B = new TextField(8);
  add(A);
  add(B);
  }
  public void start()
  {
  A.setText("0");
  B.setText("0");
  }
  public void paint(Graphics g)
  {
  g.drawString("Ravi is On Your Applet",50,50);
  }
  public void destroy()
  {
  A=null;
  B=null;
  }
}
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Powered By MyBB, © 2002-2024 iAndrew & Melroy van den Berg.