I followedDataPigs Technology Access 2007 video for coding sliders: http://www.datapigtechnologies.com/flashfiles/AccessSlider.html
and followedthe instruction step by step using Active x Control:
MicrosoftSlider control, version 6.0, I created Myslider and a Text box MyText.
Following theinstructions, I created an OnChange EP for the slider
and an AfterUpdate for the text box. See below:
OptionCompare Database
Private SubMySlider_Updated(Code As Integer)
Me.MyText.Value = Me.MySlider.Value
End Sub
Private SubMyText_AfterUpdate()
Me.MySlider.Value = Me.MyText.Value
End Sub
When testingunder my Access 2010 version, the slider appears to work
but theselected values do not appear in the text box nor the text box entries
change theslider position. Upon researching, Ifine that others have experienced
problems with sliders under Access 2010. Can anyone tell me if there isa fix for this problem? TIA Phil