How to test for a number

Kevin J kj2005.28 at gmail.com
Wed Mar 16 10:27:36 EST 2005


How do you make an If check to check to see if a user has entered a
number and not a letter?
I can stop it from doing a divide by 0 doing this:

on mouseUp
put field"num1" into tAdd
put field"num2" into tAdd2
  if tAdd2 is 0 then
    answer "You can't divide by 0"
  else
    put tAdd/tAdd2 into field"sum"
    end if
end mouseUp

Thanks

Kevin


More information about the use-livecode mailing list