i have this....
but do you mean to write SetUserLabel(1,"Inch/Metric") ?
and it will pick between the two words ?
If GetUserLED(1012) Then
SetUserDRO(1010 , GetUserDRO(1010) / 25.400)
SetUserLabel(1,"Inch") 'displays Inch
SetUserLED(1012,0)
Else
SetUserDRO(1010 , GetUserDRO(1010) * 25.400)
SetUserLabel(1,"Metric") 'displays Metric
SetUserLED(1012,1)
End If
End