Hi
I have the following code :
import java.awt.*;
public class TestFlow extends Frame {
public static void main(String args[]) {
Panel p = new Panel();
Button b = new Button("NORTH");
Button b1 = new Button("SOUTH");
Button b2 = new Button("CENTER");
TestFlow t = new TestFlow();
t.setSize(450,450);
t.setVisible(true);
t.add(p);
p.add(b);
p.add(b1);
p.add(b2);
}
}
How do I maximise the panel to be the size of my Monitor screen ?
Thanks in advance.