this is what i have tried and i havent been able to get it to pop up
1 2 3 4 5 6 7 8 9 10 | public static void main(String[]args){ } public void run(){ JFrame frame = new JFrame( "Test Frame" ); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible( true ); } |