How to save breakpoint in visual basic 6

孤街浪徒 提交于 2020-01-01 09:50:12

问题


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.



来源:https://stackoverflow.com/questions/3501850/how-to-save-breakpoint-in-visual-basic-6

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!