Slider with Text Box

T

TheNovice

Hey all,

I need some help bad. can some one tell me how i can use a slide bar and
having it update my text box automatically...

my slide bar name is csSl01 and my text box is txtVal10.

PLEASE HELP.

Thanks
 
L

Linq Adams via AccessMonster.com

Private Sub csSl01_Change()
Me.txtVal10 = Me.csSl01
End Sub
 
Top