pyscripter 689 Posted December 10, 2019 I am getting a bug report with the following stack list. Exception class: EOSError Exception message: System Error. Code: 1400. Invalid window handle. Exception address: 004305B8 Stack list, generated 10/12/2019 10:45:33 AM [004305B3]{PyScripter.exe} Unknown function at __dbk_fcall_wrapper [005F08C1]{PyScripter.exe} Unknown function at TMethodImplementationIntercept [005B6961]{PyScripter.exe} Unknown function at TMethodImplementationIntercept .... TMethodImplementationIntercept is defined in RTTI.pas but it does not appear to be used anywhere and I am not calling this function. { This function has been added to be used from .s .c files in order to avoid use mangled names} procedure TMethodImplementationIntercept(const obj:TMethodImplementation; AFrame: Pointer); cdecl; begin obj.Intercept(AFrame); end; exports TMethodImplementationIntercept; Any idea what might be going on? Share this post Link to post
Dave Nottage 557 Posted December 10, 2019 Does this help? https://wiert.me/2018/06/01/unknown-function-at-tmethodimplementationintercept/ 1 Share this post Link to post
pyscripter 689 Posted December 10, 2019 (edited) Yes indeed. THANK YOU! I am normally including jdbg info into the executable, but for some reason this was not included. Edited December 10, 2019 by pyscripter Share this post Link to post