Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Debugdemo 编写一个带有单步的小型 IDE。现在我需要在执行一行之前和之后的一个事件。我想在当前行执行时禁用我的编辑器。我找到了 OnLine 事件,但没有发现它在什么情况下被触发或如何使用它。欢迎任何提示。
问候克劳斯
该OnLine事件旨在改变代码的解释。 它不用于调试目的。
OnLine
如果你想这样做,请使用BreakPointsin TPSScriptDebugger。 在该行和该行之后放置一个断点。 现在,您将在执行该行之前和之后收到一个信号。
BreakPoints
TPSScriptDebugger