Coding:
try
StrToInt(inputNumVariables.Text);
except
ShowMessage('Sólo números, por favor');
end;
Being inputNumVariables a TEdit
why would it raise and exception if I type in anything different to an integer number in the Text Edit when the try-except block should catch the exception, doesn't it?