I want ‘Hello world!’ to show when my button is clicked.
So go to a next ‘frame’ but in the same window!
I tried card lay-out, but can any one tell me how to do it with this code;
What am i doing wrong in this code?
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JOptionPane;
public class myTest{
public static void main(String[] args){
JPanel panel = new JPanel();
JButton button1 = new JButton();
frame.add(panel);
panel.add(button1);
button1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
JOptionPane.showMessageDialog(null, "Hello World");
}
});
}
}
try with code:
It is working as expected.
OR if you want the message to be on the same Frame then try with this code.