-
I have a form that has a slider in it... they click a button and that form hides, and a new one appears but in a different view... HOw do I make the slider on the first form be where it is at when they click the button to show the next form on the second form...Make sense?
-
Why use .Selstart, whats wrong with .Value?
-
Nothing is wrong with it, you can use both, but Wossname is right, Value is the proper way of doing it because SelStart is properly used in conjunction with SelLength
You can modify your code by chaning SelStart to Value.
Code:
Private Sub Command1_Click()
' Set the position for the Sliders
Form2.Slider1.Value = Form1.Slider1.Value
Me.Hide ' Hide the 1st Form
Form2.Show 'Show the 2nd Form.
End Sub