Hi everyone,
The 'On Updated' event does not fire after having modified the slider position.
This is an MS Access VBA development project.
Can anyone tell me how to get this event to fire Or is there another way that I can recover the value of the slider position after the user has moved it
Any help or other pointers will be greatly appreciated !
Many thanks,
Lars

ActiveX Slider Control 6.0 (SP4) Problem
Micael Baerens
Can you make use of the Change event
Private Sub Slider0_Change()
MsgBox "Changed " & Me.Slider0.Value
End Sub
Leo Mathew
It Works !
Many thanks Andy, for your suggestion. I didn't think of using the Change event, as it was not listed in the Events Tab in the properties dialog for this control, but it seems to work OK :)
Many thanks again Andy, you have solved my problem.
Lars