Constant breakpoints? How to remove them?

前端 未结 3 1908
失恋的感觉
失恋的感觉 2021-02-20 15:56

I downloaded a project made with Delphi 2009,which is also what I use,however there is one breakpoint that I just can\'t remove.If I try to remove it,its being executed again af

相关标签:
3条回答
  • 2021-02-20 16:03

    View->Debug Windows->Breakpoints.

    I'm very dissapointed at those articles.They explain how to add something,but not how to remove it.

    0 讨论(0)
  • 2021-02-20 16:19

    Breakpoints are stored in the dsk file for your project. Close your project, delete that file, and re-open the project. All breakpoints should be gone. (Other window-layout customizations will be gone, too. You'll have to restore those preferences manually.)

    0 讨论(0)
  • 2021-02-20 16:20

    If, for whatever reason, you can't turn these off in the IDE, as Rob says, this is persisted in the .dsk file.

    You don't have to delete the file (and all of your other settings), though. you can just open it up in a text editor and find and edit the following section:

    [Breakpoints]

    0 讨论(0)
提交回复
热议问题