Hi Sorry i was doing a little program and i need helps
i would like to something similar to that
http://i42.tinypic.com/2mys23d.png
this is my code so far
private void makeFrame()
{
frame = new JFrame("Jubilee Estate Agency Property");
makeMenuBar(frame);
Container contentPane = frame.getContentPane();
JLabel label = new JLabel();
contentPane.add(label);
// building is done - arrange the components and show
frame.pack();
frame.setVisible(true);
// Specify the layout manager with nice spacing
contentPane.setLayout(new BorderLayout(2, 2));
statusLabel = new JLabel(CONTACT);
contentPane.add(statusLabel, BorderLayout.SOUTH);
frame.pack();
Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
frame.setLocation(d.width/2 - frame.getWidth()/2, d.height/2 - frame.getHeight()/2);
frame.setVisible(true);
and i would like know how I can put my code into a pop window and how i can do a list of something i have no idea.
thanks you I am a beginner in java