Private Sub VScrollBar1_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles VScrollBar1.Scroll
Label4.Text = CStr(255 - VScrollBar1.Value)
OutputAnalogChannel(1, 255 - VScrollBar1.Value)
End Sub[code]
How do I make VScrollBar1.Value available for the outside world.
For example a text file.