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!

How do you link a control to a field in a table?

Status
Not open for further replies.

gandalf1

Programmer
Sep 13, 2001
14
US
How do you link a control to a field in a table? I am trying to use a slider bar (in a form) to create a value in a table.

gandalf1
 
Hi gandalf

I am not sure what you are after !!

Do you have a form which accesses records in your table and when you select a record from the table you want to use a slide control to modify the data ??

If this is so then there should be no problem.

Create a text box that shows the contents of the field that you want to change. Then on the slider's Change event make the text field value equal to the slider's value
eg:-
Private Sub axSlider_Change()
txtValue = axSlider.Value
End Sub

HTH
*
***
*****
Ziggurat
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top