How do i disable the x button on the top right corner of JDialog ?
Kindly reply back.
Jennifer Garrett
Greenhorn
Joined: Oct 31, 2001
Posts: 13
posted
0
Try this line after you define dialog as the JDialog: dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE );
Vaskar Dasgupta
Greenhorn
Joined: Jul 20, 2001
Posts: 25
posted
0
Thanks a lot Jennifer for your response, i have tried that option but unfortunately the line of code you suggested only removes the functionality of the button, i am looking forward to something like making the button GRAYED in color (Like you see it in windows, a grayeed disabled button .....) Waiting for your response.