It is 14.0.3593.25826.
This thread can be continuation of that thread:
Delphi don't recompile changed code.
I have program v1.0. Now I'm working on v1.1. So I want to make some small modification in one of the dialogs. It's simple: just added conditional call another function.
Delphi-Quellcode:
if cbPath.Checked then // <-- exceptions here
// olde code
else
// new code
;
That's all. After run, app raises
AV and EReadError (can't read value from some component property I don't uses it in event handler
). Both are in if line
(when if removed then working
)
WTF is that