Change value during debug

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi,

I have variable strText, with value "Hello World"

I see this value at Watch window. Can I change this value to "World
Hello" and continue work or I need to stop program , assign new value
to variable and run program again.

At VB6 I can do it, but can not find such opportunity at VB.Net

Thanks
 
Mike said:
I have variable strText, with value "Hello World"

I see this value at Watch window. Can I change this value to
"World Hello" and continue work or I need to stop program , assign
new value to variable and run program again.

At VB6 I can do it, but can not find such opportunity at VB.Net

Click into the watch window and change the text. Or execute

strtext="world hello"

in the immediate window.


--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
 
Yes, you are right,

but to find it I need to test it on 2 PCs
On the first it does not work, on the second - works

Do you know what can be ? Any flag ?

Thanks
 
Back
Top