/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package comboboxtest; import javax.swing.JFrame; /** * * @author jcmtiernan */ public class ComboBoxTest { /** * @param args the command line arguments */ public static void main( String[] args ) { ComboBoxFrame comboBoxFrame = new ComboBoxFrame(); comboBoxFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); comboBoxFrame.setSize( 350, 150 ); // set frame size comboBoxFrame.setVisible( true ); // display frame ComboBox2Frame comboBox2Frame = new ComboBox2Frame(); comboBox2Frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); comboBox2Frame.setSize( 350, 150 ); // set frame size comboBox2Frame.setLocation(500, 50); comboBox2Frame.setVisible( true ); // display frame } // end main }