금강산 wrote:
>
> edit1.text에 입력된 값이 문자인지 숫자인지 구별하고 싶은데...
> 방법이 업나요? 있으면 갈켜주이소.. 고수님들 부탁합니다.
>
> ^..^ 넙죽....
function isDigit( C : Char ) : Boolean;
begin
if (C >= '0') and (C <= '9') then
Result := True
else
Result := False;
end;
str := Edit1.Text
if isDigit(Str[1]) then....
참고하시길......