a dinamic scale control

  • Thread starter Thread starter Sam
  • Start date Start date
S

Sam

where i can find a control with a dinamic scale
that enables me to change data in a table/graph
by moving the scale to the right or to the left

thanks ahead
 
-----Original Message-----
where i can find a control with a dinamic scale
that enables me to change data in a table/graph
by moving the scale to the right or to the left

thanks ahead



.
Hi Sam,
you can use a spin button.

On the toolbox click more controls (Microsoft Forms Spin
Button).
Use its orientation property to set to vertical or
horizontal. Also add a textbox to your form. Use the
following as examples to update the textbox...

Private Sub SpinButton5_SpinDown()
Text46 = Nz(Text46, 0) - 1
End Sub

Private Sub SpinButton5_SpinUp()
Text46 = Nz(Text46, 0) + 1
End Sub

Luck
Jonathan
 
Back
Top