Re: still no GUI on alpha

1998-12-30 Thread jinranlin
hello, I think you might need to check the path of file classes.zip , and add this path to enviroment variable CLASSPATH . Hope it helpful. Jerry -- > ·¢¼þÈË: David Harvill <[EMAIL PROTECTED]> > ÊÕ¼þÈË: [EMAIL PROTECTED] > Ö÷Ìâ: still no GUI on alpha > ÈÕÆÚ: 1998Äê12

still no GUI on alpha

1998-12-29 Thread David Harvill
I have a simple little gui file, gTest.java. % cat gTest.java import java.awt.*; public class gTest { public static void main(String args[]) { Frame f = new Frame(); f.resize(100,100); f.setLayout(new BorderLayout()); f.add(new Label("Greetings"), "South");