I really doesn't understand what it's going on with my JSpinner. I instanciated it and then I tried to set it on my JPanel with a setBounds but the only thing I get is this :
The little square on the middle is what should be my JSpinner..
My code is like this :
private JSpinner spinnerDayBirth;
spinnerDayBirth = new JSpinner();
spinnerDayBirth.setBounds(280,351, 25, 25);
add(spinnerDayBirth);
They're few lines betweens each of these instructions but they never touch to this JSpinner.
So I wonder why I can't get a normal JSpinner.. Thank you in advance !