2

I've made some searches but not found this question, sorry.

In a vb6 loop Ive a msgbox showed. Any way to enter in debug mode (as using F8) ? I need this in order to change the conditions of the msgbox.

And not, I can't restart the project because then I will lost the changes and the time the array took (several hours).

TIA.

Guillermo
  • 57
  • 1
  • 6

2 Answers2

8

Assuming you are running in Debugger when the MsgBox shows, press Ctrl + Break to interrupt the MsgBox and drop into single-line stepping.

tcarvin
  • 10,715
  • 3
  • 31
  • 52
2

you can use breakpoints-you mark the point in code by clicking on the bar near the code and then you run the code at the moment the instruction pointer gets to this point you will see the code and the values at this point.

hope this helped.

TheNewOne
  • 1,613
  • 11
  • 19