Click here to Skip to main content
15,903,385 members

Comments by Member 13658198 (Top 2 by date)

Member 13658198 2-Feb-18 12:03pm View    
I did tried. Even before and after this coding.

public static void main(String[]args)
{
PizzaOrderForm frame = new PizzaOrderForm();
frame.setSize(500,300);
frame.setResizable(false);
frame.setLocationRelativeTo(null); // center the frame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
Member 13658198 2-Feb-18 12:02pm View    
Deleted
I did. Even before and after this coding,

public static void main(String[]args)
{
PizzaOrderForm frame = new PizzaOrderForm();
frame.setSize(500,300);
frame.setResizable(false);
frame.setLocationRelativeTo(null); // center the frame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}