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

Search results for query: *

  1. asterof53

    ckecking for null from text box

    Yea I tried using the val function ValHiLo=val(frmKeypadHiLo.TheTextHiLo) ValHi=val(frmKeypadHiLo.TheTextHi) ValLo=val(frmKeypadHiLo.TheTextLo) I tried If (ValHiLo > ValLo) AND (ValHiLo <= ValHi) THEN 'do true code Else 'Do false code End If It always seemed to do the true code even...
  2. asterof53

    ckecking for null from text box

    no I need to make sure there is a value of frmKeypadHiLo.TheTextHi = 100 frmKeypadHiLo.TheTextLo = 1 No greater than the value assigned to frmKeypadHiLo.TheTextHi and no less than the value assigned to frmKeypadHiLo.TheTextLo = 1 and it must be a number not a space or null
  3. asterof53

    ckecking for null from text box

    you can add a label to the form and label1.caption = Value1
  4. asterof53

    ckecking for null from text box

    try this Button calls this form called frmKetpadHiLo frmKeypadHiLo.Caption = "HS301 PID SP" frmKeypadHiLo.TheTextHiLo = "" 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...
  5. asterof53

    ckecking for null from text box

    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...

Part and Inventory Search

Back
Top