Well the title prett much tells you what error I have XD...
so far....
JLabel label1 = new JLabel( "AIRLINE RESERVATION", SwingConstants.CENTER );
JPanel panel1 = new JPanel();
panel1.add( label1 );
tabbedPane.addTab( "RESERVING", null, panel1, "FirstPanel");
then heres the problem....
mealComboBox = new JComboBox( meals );
panel1.add( mealComboBox );
mealComboBox.setBounds( 200, 200, 170, 20 );
mealComboBox.setSelectedIndex( 0 );
the setbounds is definetely wrong...use that for container :( I keep tryin but it doesn't seem to work...and i'm not experienced enough to use GridBagLayout
If anyone can help, that would be greatly appreciated.