hello, linking a trackbar and a textfield is very easy in windows forms. it is like this: textBox.DataBindings.Add("Text", trackBar, "Value");
the problem is, that trackbars only allow for integer values but i want to have floating point values. so i usually just divide the value by 100, since on the trackbar the value is not directly visible to the user. but in the textbox it is.
so is it possible to link these two with a factor of 100?
thanks!