Sunday, May 26, 2013

Simple Applet Program

Following is a Simple applet program inn java.



import java.awt.*;
import java.applet.*;

public class app2 extends Applet
  {
     public void paint(Graphics g)
       {
             g.drawString("MY FIRST APPLET",30,30);
       }
  }

No comments:

Post a Comment

MS SQL : How to identify fragmentation in your indexes?

Almost all of us know what fragmentation in SQL indexes are and how it can affect the performance. For those who are new Index fragmentation...