Debugging in VB.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,I am trying to run a windows forms application in debug mode, but it is
different from what we had in VB6.0, like in VB6.0 we can do :
- Change the values of variables while in debug mode
- edit and make changes to the code in debug mode
i am not able to do the same in VB.net because of READ ONLY MODE,
can anyone please let me know on how to fix this.

Thanks
 
AVXl said:
Hello,I am trying to run a windows forms application in debug mode, but it
is
different from what we had in VB6.0, like in VB6.0 we can do :
- Change the values of variables while in debug mode
- edit and make changes to the code in debug mode
i am not able to do the same in VB.net because of READ ONLY MODE,
can anyone please let me know on how to fix this.

Thanks

The feature is not available in VS 2002 or VS 2003. The ability to
edit/recompile on the fly in debug mode has been implemented in Visual
Studio 2005. So, to "fix" it, download the VS 2005 beta 2.
 
You can change the values of variables from the Locals/Autos/Watch windows.

Code cannot be changed. The Edit-and-Continue feature will be back in VS
2005.

--


HTH

Éric Moreau, MCSD, Visual Developer - Visual Basic MVP
(http://aspnet2.com/mvp.ashx?EricMoreau)
Conseiller Principal / Senior Consultant
Concept S2i inc. (www.s2i.com)
 
Back
Top