Simple dialog for asking a yes no question : Dialog « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Swing JFC » DialogScreenshots 
Simple dialog for asking a yes no question
Simple dialog for asking a yes no question


import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class AskingQuestionDialog {

  public static void main(String argv[]) {
    JOptionPane pane = new JOptionPane(
        "To be or not to be ?\nThat is the question.");
    Object[] options = new String[] { "To be""Not to be" };
    pane.setOptions(options);
    JDialog dialog = pane.createDialog(new JFrame()"Dilaog");
    dialog.show();
    Object obj = pane.getValue()
    int result = -1;
    for (int k = 0; k < options.length; k++)
      if (options[k].equals(obj))
        result = k;
    System.out.println("User's choice: " + result);
  }
}


           
       
Related examples in the same category
1. Creating and using Dialog BoxesCreating and using Dialog Boxes
2. Dialog boxes and creating your own componentsDialog boxes and creating your own components
3. A frame that can easily support internal frame dialogsA frame that can easily support internal frame dialogs
4. An example of using the JOptionPane with a custom list of options in anAn example of using the JOptionPane with a custom list of options in an
5. See the differences between various types of option panesSee the differences between various types of option panes
6. Vote DialogVote Dialog
7. Create simple about dialogCreate simple about dialog
8. Dialog separatorDialog separator
9. Message dialogMessage dialog
10. Error message dialogError message dialog
11. Information dialog with customized logoInformation dialog with customized logo
12. Input dialog with user-defined logoInput dialog with user-defined logo
13. Comfirmation dialogComfirmation dialog
14. Default button for dialog: press Enter to activateDefault button for dialog: press Enter to activate
15. Class to Prompt the User for an ID and Password
16. Simple Save Dialog demoSimple Save Dialog demo
17. Demonstrate JOptionPaneDemonstrate JOptionPane
18. Create Color Sample PopupCreate Color Sample Popup
19. Simple Input DialogSimple Input Dialog
20. No button dialogNo button dialog
21. Message Dialog demo Message Dialog demo
22. Dialog with Escape KeyDialog with Escape Key
w___w_w__.__j___a___v__a2___s__.c__o__m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.