Slider issue
so i want to get the value of the slider. The default value is 8 and if i move the slider to 12, i get the value of 0000012. What can i do for it to display correctly? And one more thing - i accidentally turned off the the category in the palette where all the parameters and events are held and i can't seem to find how to turn it back on again. Thanks for your help.
The code for the slider is:
privatevoid jSlider1StateChanged(javax.swing.event.ChangeEvent evt){
if (!jSlider1.getValueIsAdjusting()){
d=jSlider1.getValue();
}
}

