SSE
SSE

Reputation: 445

Unable to locate Component

When we are using delphi-10 exe we are getting below issue,but i couldnt find this file in my machine where I installed delphi10

"This application failed to start becuase rtl140.bpl was not found.Re-installing the application may fix this problem"

Upvotes: 1

Views: 562

Answers (1)

Ondrej Kelle
Ondrej Kelle

Reputation: 37211

Your executable is compiled with runtime packages and requires them to run; you should deploy them on the target computer during installation. Alternatively, you could turn off runtime packages (compiler options) and have a stand-alone executable.

On a computer where Delphi is installed the runtime packages should be installed in the system directory; Delphi IDE itself is compiled with runtime packages.

Upvotes: 3

Related Questions