Rookian
Rookian

Reputation: 20549

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.

Upvotes: 6

Views: 4424

Answers (3)

JBates
JBates

Reputation: 51

Here is a nice VB6 add-in to save breakpoints on exit. http://www.darinhiggins.com/bookmarksave-addin-for-vb6

Upvotes: 5

Bob77
Bob77

Reputation: 13267

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

Upvotes: 3

Paul Michaels
Paul Michaels

Reputation: 16705

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.

Upvotes: 7

Related Questions