Making horoscope using spinner or combo box
Can someone suggest me, how should i do this task.
My task contains date of birth as a input, using spinner or combo box and then with pressing a button I have to obtain horoscope sign regarding the date of birth that goes as a input
I'll be really grateful if you give me some directions :)
Re: Making horoscope using spinner or combo box
I'd first create a JPanel, I'd add a JSpinner for days and a JComboBox for months, I'd add a JButton, then I'd give the JButton an ActionListener that extracted the information and displayed the results. If I were stuck on any step, I'd check the respective Swing tutorials which I have linked to in my browser here: Using Swing Components.
Good luck!