The information in this article applies to:
SYMPTOMSIn a Microsoft Visual Basic Programming System, Applications Edition procedure, you cannot modify or skip a line of code in the procedure either while you are stepping through the procedure, or after you have reached a breakpoint in the procedure. CAUSE
This behavior is caused by the way that Visual Basic modules are compiled.
You cannot edit a Visual Basic procedure while in break mode.
If you choose Yes, the procedure stops running, and you can edit your code. If you choose No, you can continue running the procedure. MORE INFORMATION
A Visual Basic module is compiled, or translated into code that can run,
the first time you run a procedure in the module. Additionally, any module
that this module depends on is also compiled. For example, if a procedure
or variable is used in another module, that module is also compiled. Also,
any dependent module in a dependent project is compiled, and the dependent
project is loaded at this time (if it isn't already loaded).
Additional query words: err msg
Keywords : |
Last Reviewed: October 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |