Button calls this form called frmKetpadHiLo
frmKeypadHiLo.Caption = "HS301 PID SP"
frmKeypadHiLo.TheTextHiLo = 10.0
frmKeypadHiLo.TheTextHi = 100
frmKeypadHiLo.TheTextLo = 1
frmKeypadHiLo.Show
you enter a value in a textbox and click done button value is returned back to this script
If frmKeypadHiLo.TheTextHi <> "" Then 'suppose to check to be sure there was data in checkbox
Value1 = frmKeypadHiLo.TheTextHiLo * 10
End If
the textbox will only contain numeric text
this checking does not work
tried
Value1 = VAL(frmKeypadHiLo.TheTextHiLo) * 10
If Value1 > 0 Then but this did not work either
any one have a solution
frmKeypadHiLo.Caption = "HS301 PID SP"
frmKeypadHiLo.TheTextHiLo = 10.0
frmKeypadHiLo.TheTextHi = 100
frmKeypadHiLo.TheTextLo = 1
frmKeypadHiLo.Show
you enter a value in a textbox and click done button value is returned back to this script
If frmKeypadHiLo.TheTextHi <> "" Then 'suppose to check to be sure there was data in checkbox
Value1 = frmKeypadHiLo.TheTextHiLo * 10
End If
the textbox will only contain numeric text
this checking does not work
tried
Value1 = VAL(frmKeypadHiLo.TheTextHiLo) * 10
If Value1 > 0 Then but this did not work either
any one have a solution