How do I generate a PowerBuilder Symbols file for dump analysis?

How do I generate a PowerBuilder Symbols file for dump analysis?

-1


source to share


2 answers


Are you having a problem with your compiled PowerBuilder application?

I've never used the Microsoft Debugger, however I used Dependency Walker and ran my application from that environment. This usually helps us if we do not have files to deploy, etc.



If you need a stack dump, have you thought about running the application from the Run window and added the / debug parameter after the application name? This creates a call stack log that displays all your calls, etc. You will probably get what you need.

Please advise.

0


source


You can install Dr. Watson (drwtsn32) to automatically generate a crash dump when / if your application dies.



However, the dump will usually only be useful when called into native DLLs. Otherwise, the stack will include various PBVM calls, which would be difficult to adjust back to the actual lines of source code.

0


source







All Articles