Mar 16, 2001 #1 gforrest Programmer Apr 26, 2000 39 CA Hi Gang, Anyone know how I change this code to allow the use of the backspace key? Thanks. if not (Key in [Ɔ'..' 9']) then //Allow numeric characters only Key := #0;
Hi Gang, Anyone know how I change this code to allow the use of the backspace key? Thanks. if not (Key in [Ɔ'..' 9']) then //Allow numeric characters only Key := #0;
Mar 18, 2001 #2 Otto Programmer Dec 31, 1998 224 HU if not (Key in ['0'..'9', #8]) then Key:= #0; Upvote 0 Downvote