View Single Post
Old 05-08-2007, 03:11 PM   #6
scotty1024
Banned
scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.
 
Posts: 1,300
Karma: 1479
Join Date: Jul 2006
Location: Peoples Republic of Washington
Device: Reader / iPhone / Librie / Kindle
Code:
package com.irex.sdk;

import java.awt.Frame;
import java.io.PrintStream;
import java.util.Date;

// Referenced classes of package com.irex.sdk:
//            DisplayUpdate

public class HelloWorldAWT
{

    public HelloWorldAWT()
    {
    }

    private void createAndShowGUI()
    {
        Frame frame = new Frame("HelloWorldSwing");
        frame.pack();
        frame.setSize(768, 1024);
        frame.setVisible(true);
    }

    public static void main(String args[])
    {
        System.out.println("start time:" + (new Date()).getTime());
        HelloWorldAWT helloworldawt = new HelloWorldAWT();
        helloworldawt.createAndShowGUI();
        DisplayUpdate.dispMainWinFullQ();
        System.out.println("finished,time is:" + (new Date()).getTime());
    }
}
scotty1024 is offline   Reply With Quote