+ 1
I want to make a movie quiz in Java. How to make pop up boxes that have the question and 4 multiple choices to click right ans?
Multiple Choice pop up boxes in Java
6 Réponses
+ 4
not possible here probably!
you can do it in pc though
+ 3
I hope this can help you out
https://stackoverflow.com/questions/6446881/java-pop-up-window-to-ask-for-data
+ 3
Object[] possibilities = {"ham", "spam", "yam", " other"};
String s = (String)JOptionPane.showInputDialog( frame, "Choose your favourite:\n" + "\"Food...\"", "Customized Dialog", JOptionPane.PLAIN_MESSAGE, icon, possibilities, "ham");
I found from oracle official documentation and edited.
this will represent pulldown menu.
there is other option of creating 4 buttons also if you don't want pulldown menu
+ 2
Thank you very much I'll look this up in Oracle docs for the buttons option :)
+ 1
yes I intend to do this on pc not sololearn...
+ 1
Oh I know about JoptionPane. I was wondering how to have multiple choice in the JoptionPane. A B C D answers for the user to click on right answer