Reputation: 55
I am trying to install an component TntUnicodeVcl_R50 (it is .dpk - delphi package) to Delphi but every time I try to install it an error pops up that it can`t be installed because it is not a run time package. Do anybody have any suggestion how to avoid this error and install the package? I need it to be done under Delphi 5.
Thank you very much for your answer.
Upvotes: 0
Views: 2454
Reputation: 9
You need to install another package. This one should be only compiled. Please take a look for design-time packages (i.e. TntUnicodeVcl_D50) to install
Upvotes: 0
Reputation: 613461
If you read the error message in your image you will see that it actually states that the package cannot be installed because it is not a design time package.
Which makes sense. The package you are trying to install is TntUnicodeVcl_R50
where there R
indicates run time. You need to install the design time package. One would guess that it is named TntUnicodeVcl_D50
.
Upvotes: 3