Sunday, May 26, 2013

Frame in Java

/**PROGRAM FOR FRAME (WINDOW)**/

import java.lang.*;
import java.awt.*;

class demo extends Frame
  {
   

     public static void main(String args[])throws Exception
          {
                 demo d=new demo();

    d.setSize(1600,800);

               d.setVisible(true);
          }
  }

                 

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...