Page 48
Font f = new Font("Serif",Font.BOLD,30);
JLabel name = new JLabel("Search Your Train
Easily");
name.setForeground(Color.white);
name.setBounds(20,180,350,35);
name.setFont(f);
JPanel sr = new JPanel();
sr.setLayout(null);
sr.setSize(400,350);
sr.setBackground(new Color(0,0,0,80));
sr.setBounds(530,70,310,420);
JLabel head= new JLabel("Search Train");
head.setBounds(50,20,200,30);
head.setForeground(Color.white);
head.setFont(f);
sr.add(head);
JLabel from=new JLabel("From");
from.setBounds(50,70,200,30);
from.setForeground(Color.white);
sr.add(from);
String
station[]={"KPA","NH","SDAH","HWH","RMPH","SEP","KNJ","
NJP","BKP","BNG","BT","PURI",};
JComboBox cb= new JComboBox(station);
cb.setBounds(50,110,150,30);