Home > Back-end >  Delphi after running in the compiler complains, but operates wouldn't be an error in the genera
Delphi after running in the compiler complains, but operates wouldn't be an error in the genera

Time:09-24

Delphi after running in the compiler complains, but operates wouldn't be an error in the generated exe files, used the try never dull

CodePudding user response:

You mean the IDE, this is because the IDE captured your application exception (if opened integrated was debugging),

CodePudding user response:

Under normal circumstances the IDE captured program abnormalities,

But the compiled EXE, execution, with the use of:
Try
.
Except,
.
end;

Statement block the wrong,

CodePudding user response:

If you Delphi version is quite high, as long as abnormal in the IDE, can prompt, even if you are using a try... Except... end;
This is mainly because the Debug tracking in Delphi can time the following code to determine whether it is right for you, such as high version of the Delphi, if public variables when creating specifies the Application (XXX. The Create (Application), but you wrote in the finalization release (XXX. Free), and then Delphi will prompt you to a bunch of seemingly abnormal English, generally it means that you Create XXX is together with the Application release, don't need you to release and so on,
And high version of the Delphi have a useful function, is abnormal when prompted, at its tip box below the checkbox, said this function is the same type of exception or warning when operating the tracking no longer prompt,

- I'm using RAD Studio 10 Seattle, if you want to learn, can enter the QQ group, 95212141
  • Related