I am trying to create a contact list where once you press a button named (contact add) it will go to a new page where you can add the name, address, and number. But I am having trouble going to a new page after pressing my button.
button.addActionListener( new ActionListener());
{
public static void actionPerformed(ActionEvent e)
{
AFrame frame = new AFrame();
frame.setSize(500,500);
frame.setTitle("add list");
new NewPFrame().setVisible(true);
}
});