I am trying to get a value of trackbar / slider, divide it by 100 and display the value in label.
I get an error Operator '/' cannot be applied to operands of type 'int' and 'string'.
Here's my try:
private void siticoneTrackBar1_Scroll(object sender, ScrollEventArgs e)
{
label6.Text = siticoneTrackBar1.Value / 100.ToString();
}
Can anyone help?