How can I save my breakpoints in Visual Basic 6? Are there any add-ins? For now I have MZ-Tools, but unfortunately they don't save breakpoints.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I'm not sure about third party tools, but you could always use:
Debug.Assert False
Just remember to remove it when you're done.
回答2:
Here is a nice VB6 add-in to save breakpoints on exit. http://www.darinhiggins.com/bookmarksave-addin-for-vb6
回答3:
This is what the Stop
statement does, i.e. act as a persistent unconditional breakpoint.