Home > database >  Delphi 11.2 : The procedure entry point @System@Urlclient@TAsyncReadStream@Sbcctr$qqrv could not be
Delphi 11.2 : The procedure entry point @System@Urlclient@TAsyncReadStream@Sbcctr$qqrv could not be

Time:01-16

I just updated Delphi from 11.0 to 11.2 and I get this error on startup. The program compiles ok. I guess it's about the Indy installation. Anyone have a solution please?

CodePudding user response:

The error indicates that you are compiling your app to use packages and the entry point indicated is not found.

I think you've copied the error message incorrectly, because it should be "@System@Net@Urlclient@TAsyncReadStream@Sbcctr$qqrv". This appears to be a exported item that is new in the 11.2 rtl280.bpl.

It has nothing to do with Indy (the name of the bpl entry point would make that obvious).

Bottom line, you have a path problem and at runtime, your app is finding the 11.0 rtl280.bpl instead of the 11.2 version.

  • Related