Results 1 to 3 of 3

Thread: The sound of one hand clapping....

  1. #1

    Thread Starter
    Hyperactive Member Sacofjoea's Avatar
    Join Date
    May 2000
    Location
    Never Never Land
    Posts
    472
    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?

  2. #2
    Guest
    Why use .Selstart, whats wrong with .Value?


  3. #3
    Guest
    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
  •  



Click Here to Expand Forum to Full Width