Hi all, my problem is that i want to block my main frame when i call a JDialog! i try several things but cant! I use this to call the JDialog
public void showAboutBox() {
if (info == null) {
info = new Informacion(this);//call my jDialog
info.setLocationRelativeTo(this);
}
info.setVisible(true);
}
but i need to block the main frame until the user close the dialog !
any help?