|
-
Jun 27th, 2000, 12:06 PM
#1
Thread Starter
Hyperactive Member
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?
-
Jun 28th, 2000, 12:32 AM
#2
Why use .Selstart, whats wrong with .Value?
-
Jun 28th, 2000, 12:45 AM
#3
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|