duf wrote:
> I have got a simply program written in xe7 on Windows 10 platform
> and after compiling there is error of running program without any
> useful information for me.
What kind of error exactly? Please be more specific.
> Could someone interpret what is wrong? Thanks
> [http://fotowrzut.pl/F7LUBATDSD]
You have not provided any information with which to reliably diagnose it.
But, based on your screenshot, since __delayLoadHelper2 is on the call stack,
maybe your app is trying to call a delay-loaded DLL function that does not
exist on the machine that you are running your app on. The delay loader
does not fail very gracefully. However, you can at least install a __pfnDliFailureHook
callback function (http://docwiki.embarcadero.com/RADStudio/XE8/en/PfnDliNotifyHook,_pfnDliFailureHook)
to detect delay-load failures before they crash your code.
--
Remy Lebeau (TeamB)