I need more information when the scripting engine encounters an unhandled error like insufficient memory(when it occurs, how much used, ...).
All information is passed through EXCEPINFO structure and it has the following fields.
- bstrDescription
- bstrHelpFile
- bstrSource
- dwHelpContext
- pfnDeferredFillIn
- pvReserved
- scode
- wCode
- wReserved
https://docs.microsoft.com/en-us/dotnet/api/stdole.excepinfo?view=visualstudiosdk-2019
But I could not find any information on these fields.
I really want to know more information about OnScriptError.
Thank you in advance.