TMS Webcore Debugging Hints

I thought that It might help someone else if I posted some hints on debugging TMS Webcore.

  1. It happens in the browsers developer tools (not in the Delphi IDE). Your source is visible there for stepping through.
  2. The keys are different, I keep hitting the Delphi ones. Maybe I can re-allocate them.
  3. Breakpoints are not dynamic. They have to be put in before you run the application.
  4. You cant put a breakpoint on begin. If you do, it doesnt compile and gives you a bogus error. I re-wound my code and re-installed stuff before I realised what was happening.

Good points, Rohit.

Mind you I was able to set an additional breakpoint after the application had started and I had hit the first two breakpoints already.

We just need to get used to the debugger tools of the browser. But for the debug version we still have the Map file to step through the Object Pascal code in the browser. See also my screenshot below.

Salut,
Mathias

Oops,

I was setting the new breakpoint in Delphi IDE. I should have tried it in the browser :smiley:

1 Like

Both are possible.You can set breakpoint in Delphi IDE, and you can set breakpoint in developer console of webbrowser. When set in IDE, be sure to recompile the application. In developer console you can see asm debugger; end; is inserted in source code.

Best regards,
Erwin