If you need to set value instantly - use ValueChanged event.
If you need to set value only once after finish changing - use MouseCaptureChanged event.
Scroll event - it's behaviour event.
Occurs when either a mouse or keyboard action moves the scroll box.
So, probably you need:
int trackValue = 0;
private void trackBar1_MouseCaptureChanged(object sender, EventArgs e)
{
trackValue = this.trackBar1.Value;
}
Also, you are trying to save value to a local variable inside of event handler, if you need to use it outside of event handler, you need to define variable outside of the handler.