Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hw to Use Slider Control on Unbound Field

Status
Not open for further replies.

number2

Technical User
Oct 25, 2001
284
US
I am trying to use MS Slider Control on an unbound field. I have set the properties for the control but it does not update the value when used. Is the a trick to this? I can find no documentation anywhere on the slider control.
Thanks!
 
Hi, you need to pass the value of the slider to your unbound control on the YourSlidersName_AFTER_UPDATE event
something like
Code:
Sub YourSlidersName_AFTER_UPDATE()
YourTextBoxControl.Value = YourSlidersName.Value
End Sub

HTH, Jamie
FAQ219-2884
[deejay]
 
You'll have to move to a new field in order for the control to update (ie, you move the slider where you want it and then move the focus to another control, then it will update the text box.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top