Re: A nagging problem with controlling data entry

2008-07-19 Thread Charles Szasz
er.html > for more info. > > On 18 jul 2008, at 04:02, Charles Szasz wrote: > >> >> I have run into a nagging problem with controlling data entry by the >> user. I >> used the following code to limit input to three numbers: >> >> on keyDown p

Re: A nagging problem with controlling data entry

2008-07-18 Thread Mark Schonewille
ry.biz Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html for more info. On 18 jul 2008, at 04:02, Charles Szasz wrote: I have run into a nagging problem with controlling data entry by the user. I used the following code to limit input to three number

Re: A nagging problem with controlling data entry

2008-07-18 Thread Ken Ray
> I am using Rev 2.9 on a Mac. I have autoTab checked. The field is not > locked. Is there a better code to check for numeric entry and monitor the > entry of certain values in a text entry field? I would recommend using a "send in time" command - gives the 'exitField'/'closeField' time to compl

A nagging problem with controlling data entry

2008-07-17 Thread Charles Szasz
I have run into a nagging problem with controlling data entry by the user. I used the following code to limit input to three numbers: on keyDown pkey if pKey is in "1234567890" and the number of chars of target <4 then pass keydown end keyDown I also use the following scrip