-
JBuilder
Here's a simple program i made in JBuilder 5 Personal Edition.
For some reason System.out.print doesn't work.
The console doesn't even popup.
So please Help:D
PHP Code:
package testing2;
import java.awt.*;
import java.io.*;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2001
* Company:
* @author
* @version 1.0
*/
public class ThisISATest {
public ThisISATest() {
}
public static void main(String[] args) {
ThisISATest thisISATest1 = new ThisISATest();
//
Frame Frame1=new Frame();//works
Frame1.show();
Frame1.setBounds(0,0,200,200);
System.out.print("Help");//doesn't work
}
}
-
A console doesn't pop up; a frame in the bottom of JBuilder shows everything in System.out.
-