I am working on a pretty basic C# visual studio forms application but am having some issue getting the track bar to act as I want it to so hoping someone in the community mi
Try this with the trackbar_valuechanged event handler:
trackbar_valuechanged
trackbar_valuechanged(s,e) { if(trackbar.value == 10){ //Do whatever you want } else{ //Do nothing or something else } }