コーディング:
try
StrToInt(inputNumVariables.Text);
except
ShowMessage('Sólo números, por favor');
end;
inputNumVariables であるため、try-except ブロックが例外をキャッチする必要があるときに、テキスト編集で整数とは異なるものを入力すると、例外が発生するのはなぜですか?TEdit
コーディング:
try
StrToInt(inputNumVariables.Text);
except
ShowMessage('Sólo números, por favor');
end;
inputNumVariables であるため、try-except ブロックが例外をキャッチする必要があるときに、テキスト編集で整数とは異なるものを入力すると、例外が発生するのはなぜですか?TEdit