aspose file tools
The moose likes Applets and the fly likes Window Problem Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Applets
Reply Bookmark "Window Problem" Watch "Window Problem" New topic
Author

Window Problem

Ajit Kumar
Ranch Hand

Joined: Jan 27, 2001
Posts: 81
hi Guys,
I have the following code for window closing event
--------
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
int exitApp= JOptionPane.showConfirmDialog(null,
"Do you really wish to exit the application", "Please Confirm", JOptionPane.YES_NO_OPTION);
if (exitApp==JOptionPane.YES_OPTION){
System.exit(0);
}
}
});
---------
When i am closing the window, the message is getting displayed. If i choose NO for closing the window is not remaining. It is just disappearing. I am sure it is not closing.
How do i make sure that, the window remains there, when i choose the NO option for the confirmation message???
any suggestions willbe greatly appreciated.

thanks in advance.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Window Problem
 
Similar Threads
Window Closing Event
parent window notification
JavaScript
making "Exit" option in JMenu
Cancelling close in windowClosing