views:

64

answers:

2

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.

+4  A: 

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.

pm_2
+1. I think there are some third party tools, but this is a good practical way. You could mark the statements with a TODO comment to help you remember to remove them later.
MarkJ
+1  A: 

This is what the Stop statement does, i.e. act as a persistent unconditional breakpoint.

Bob Riemersma
However that said, using Assert has the advantage of being automatically omitted in a compiled project.
Bob Riemersma