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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link Slider Bar (Active X) to field in table?

Status
Not open for further replies.

gandalf1

Programmer
Sep 13, 2001
14
US
I would like the slider bar to generate a numerical value in my table (field). How do I do this?


gandalf1
 
Well, that little bugger doesn't have an after update event. This is the best I could do. Create a text box on your form (mine was called Text1, how creative) and bind it to you r underlying table. Also include a command button. Paste this code

Private Sub Command3_Click()
Me.Text1 = Me.ActiveXCtl0.Value
Me.refresh
End Sub Tyrone Lumley
augerinn@gte.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top