Problems with Variables and Watch Windows
Author |
Message |
fabi #1 / 9
|
 Problems with Variables and Watch Windows
Hi, the problem is: the Variables and Watch Windows don't show the variables values, but show the message: CXX0017: Error: symbol "name" not found Thank you.
|
Tue, 29 Mar 2005 23:57:13 GMT |
|
 |
Bobby Mattappally [M #2 / 9
|
 Problems with Variables and Watch Windows
Fabio, Is your code built with optimizations? Then it is possible that those variables are optimized away. Hope this helps. Thank you, Bobby Mattappally Microsoft VC++/C# Team This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- Quote:
>Subject: Problems with Variables and Watch Windows >Date: Fri, 11 Oct 2002 17:57:13 +0200 >Lines: 10 >>Hi, >the problem is: >the Variables and Watch Windows don't show the variables values, but show >the message: >CXX0017: Error: symbol "name" not found >Thank you.
|
Wed, 30 Mar 2005 05:58:46 GMT |
|
 |
Davide Marcat #3 / 9
|
 Problems with Variables and Watch Windows
Fabio, did you check that they didn't get out of scope, thus making the symbolic names unrecognizable by the de{*filter*}? Regards -- Davide Marcato -- Web: http://www.*-*-*.com/ Quote:
> Hi, > the problem is: > the Variables and Watch Windows don't show the variables values, but show > the message: > CXX0017: Error: symbol "name" not found > Thank you.
|
Wed, 30 Mar 2005 22:02:29 GMT |
|
 |
fabi #4 / 9
|
 Problems with Variables and Watch Windows
Grazie Davide, ma mi trovo nello scope. Il problema che prima gli stessi valori mi venivano mostrati, poi da un certo punto in poi, non li vedo pi. Ho provato anche su una macchina diversa sullo stesso progetto, ma il problema permane. Forse qualche opzione legata al workspace???
|
Sat, 02 Apr 2005 19:53:19 GMT |
|
 |
fabi #5 / 9
|
 Problems with Variables and Watch Windows
Please, can you tell me something more ?? I don't understand it.
Quote: > Fabio, > Is your code built with optimizations? > Then it is possible that those variables are optimized away. > Hope this helps. > Thank you, > Bobby Mattappally > Microsoft VC++/C# Team > This posting is provided "AS IS" with no warranties, and confers no rights. > --------------------
> >Subject: Problems with Variables and Watch Windows > >Date: Fri, 11 Oct 2002 17:57:13 +0200 > >Lines: 10 > >>Hi, > >the problem is: > >the Variables and Watch Windows don't show the variables values, but show > >the message: > >CXX0017: Error: symbol "name" not found > >Thank you.
|
Sun, 03 Apr 2005 00:15:05 GMT |
|
 |
Bobby Mattappally [M #6 / 9
|
 Problems with Variables and Watch Windows
Quote: >Please, can you tell me something more ?? >I don't understand it.
Check you complier options for optimization: Open the project's Property Pages dialog box. Click the C/C++ folder. Click the Optimization property page. Modify the Optimization property to "Disabled" Hope this helps. Thank you, Bobby Mattappally Microsoft VC++/C# Team This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- Quote:
>Subject: Re: Problems with Variables and Watch Windows >Please, can you tell me something more ?? >I don't understand it.
>> Fabio, >> Is your code built with optimizations? >> Then it is possible that those variables are optimized away. >> Hope this helps. >> Thank you, >> Bobby Mattappally >> Microsoft VC++/C# Team >> This posting is provided "AS IS" with no warranties, and confers no >rights. >> --------------------
>> >Subject: Problems with Variables and Watch Windows >> >Date: Fri, 11 Oct 2002 17:57:13 +0200 >> >Lines: 10 >> >>Hi, >> >the problem is: >> >the Variables and Watch Windows don't show the variables values, but show >> >the message: >> >CXX0017: Error: symbol "name" not found >> >Thank you.
|
Sun, 03 Apr 2005 03:40:08 GMT |
|
 |
fabi #7 / 9
|
 Problems with Variables and Watch Windows
Execuse me Bobby, The Optimization property is already "Disabled". But the de{*filter*} doesn't resolve variables like string variables but only integer or boolean symbols. Can you help me in another way ?
Quote: > >Please, can you tell me something more ?? > >I don't understand it. > Check you complier options for optimization: > Open the project's Property Pages dialog box. > Click the C/C++ folder. > Click the Optimization property page. > Modify the Optimization property to "Disabled" > Hope this helps. > Thank you, > Bobby Mattappally > Microsoft VC++/C# Team > This posting is provided "AS IS" with no warranties, and confers no rights. > --------------------
Quote: > >Subject: Re: Problems with Variables and Watch Windows > >Please, can you tell me something more ?? > >I don't understand it.
> >> Fabio, > >> Is your code built with optimizations? > >> Then it is possible that those variables are optimized away. > >> Hope this helps. > >> Thank you, > >> Bobby Mattappally > >> Microsoft VC++/C# Team > >> This posting is provided "AS IS" with no warranties, and confers no > >rights. > >> --------------------
> >> >Subject: Problems with Variables and Watch Windows > >> >Date: Fri, 11 Oct 2002 17:57:13 +0200 > >> >Lines: 10 > >> >>Hi, > >> >the problem is: > >> >the Variables and Watch Windows don't show the variables values, but > show > >> >the message: > >> >CXX0017: Error: symbol "name" not found > >> >Thank you.
|
Mon, 04 Apr 2005 22:27:21 GMT |
|
 |
Bobby Mattappally [M #8 / 9
|
 Problems with Variables and Watch Windows
Quote: >But the de{*filter*} doesn't resolve variables like string variables but only >integer or boolean symbols.
Try adding the following lines to your code. char str[]="Test"; //set a Break point here. int i=5; Are you able to set a break point on any of the above lines and break into the de{*filter*}? If yes, step through the two lines of code and see whether you can see the values for both in the de{*filter*} . Hope this helps. Thank you, Bobby Mattappally Microsoft VC++/C# Team This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- Quote:
>Execuse me Bobby, >The Optimization property is already "Disabled". >But the de{*filter*} doesn't resolve variables like string variables but only >integer or boolean symbols. >Can you help me in another way ?
>> >Please, can you tell me something more ?? >> >I don't understand it. >> Check you complier options for optimization: >> Open the project's Property Pages dialog box. >> Click the C/C++ folder. >> Click the Optimization property page. >> Modify the Optimization property to "Disabled" >> Hope this helps. >> Thank you, >> Bobby Mattappally >> Microsoft VC++/C# Team >> This posting is provided "AS IS" with no warranties, and confers no >rights. >> --------------------
>> >Subject: Re: Problems with Variables and Watch Windows >> >Please, can you tell me something more ?? >> >I don't understand it.
>> >> Fabio, >> >> Is your code built with optimizations? >> >> Then it is possible that those variables are optimized away. >> >> Hope this helps. >> >> Thank you, >> >> Bobby Mattappally >> >> Microsoft VC++/C# Team >> >> This posting is provided "AS IS" with no warranties, and confers no >> >rights. >> >> --------------------
>> >> >Subject: Problems with Variables and Watch Windows >> >> >Date: Fri, 11 Oct 2002 17:57:13 +0200 >> >> >Lines: 10 >> >> >>Hi, >> >> >the problem is: >> >> >the Variables and Watch Windows don't show the variables values, but >> show >> >> >the message: >> >> >CXX0017: Error: symbol "name" not found >> >> >Thank you.
|
Tue, 05 Apr 2005 06:56:13 GMT |
|
 |
fabi #9 / 9
|
 Problems with Variables and Watch Windows
Hi Bobby, I executed the de{*filter*} with the lines : char str[]="Test"; //set a Break point here. int i=5; and I saw the values in the de{*filter*}. And now? Can you tell me something more?
Quote: > >But the de{*filter*} doesn't resolve variables like string variables but only > >integer or boolean symbols. > Try adding the following lines to your code. > char str[]="Test"; //set a Break point here. > int i=5; > Are you able to set a break point on any of the above lines and break into > the de{*filter*}? > If yes, step through the two lines of code and see whether you can see the > values for both in the de{*filter*} . > Hope this helps. > Thank you, > Bobby Mattappally > Microsoft VC++/C# Team > This posting is provided "AS IS" with no warranties, and confers no rights. > --------------------
> >Execuse me Bobby, > >The Optimization property is already "Disabled". > >But the de{*filter*} doesn't resolve variables like string variables but only > >integer or boolean symbols. > >Can you help me in another way ?
> >> >Please, can you tell me something more ?? > >> >I don't understand it. > >> Check you complier options for optimization: > >> Open the project's Property Pages dialog box. > >> Click the C/C++ folder. > >> Click the Optimization property page. > >> Modify the Optimization property to "Disabled" > >> Hope this helps. > >> Thank you, > >> Bobby Mattappally > >> Microsoft VC++/C# Team > >> This posting is provided "AS IS" with no warranties, and confers no > >rights. > >> --------------------
> >> >Subject: Re: Problems with Variables and Watch Windows > >> >Please, can you tell me something more ?? > >> >I don't understand it.
> >> >> Fabio, > >> >> Is your code built with optimizations? > >> >> Then it is possible that those variables are optimized away. > >> >> Hope this helps. > >> >> Thank you, > >> >> Bobby Mattappally > >> >> Microsoft VC++/C# Team > >> >> This posting is provided "AS IS" with no warranties, and confers no > >> >rights. > >> >> --------------------
> >> >> >Subject: Problems with Variables and Watch Windows > >> >> >Date: Fri, 11 Oct 2002 17:57:13 +0200 > >> >> >Lines: 10 > >> >> >>Hi, > >> >> >the problem is: > >> >> >the Variables and Watch Windows don't show the variables values, but > >> show > >> >> >the message: > >> >> >CXX0017: Error: symbol "name" not found > >> >> >Thank you.
|
Fri, 15 Apr 2005 19:13:21 GMT |
|
|
|