问题
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