0

I'm having trouble figuring out how to make a Tabbed Joptionpane for user input. Basically I need to take multiple values from user input, but instead of multiplied dialog boxes, I would like them to be able to enter all the separate data into one box. Is this possible? I can't seem to figure it out. In Java btw.

mKorbel
  • 109,525
  • 20
  • 134
  • 319

1 Answers1

1

You can create custom JOptionPane. Basically you define a JPanel that will contain the input fields, and organize this panel as you want. See : Multiple input in JOptionPane.showInputDialog

Community
  • 1
  • 1
dawww
  • 371
  • 1
  • 4
  • 16