Search code examples
vb6breakpoints

How to save breakpoint in visual basic 6


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.


Solution

  • 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.