tags:

views:

223

answers:

4

In VC 6 environment what is the settings to be done to view the value of the CString in debug mode. Even in watch window ??? appears for CString variables!

+1  A: 

Do you have proper Debug symbols? . pdb may be outdated

Canopus
A: 

Nope the current pdb only, also the CString i mean is unicode

jebina
You should either add comments to the answers or edit your question when you want to clafify anything, not add answers that are not answers to the question.
sharptooth
A: 

try using the GetBuffer method in the watch window.

cStringVariable.GetBuffer()
EvilTeach
A: 

Try using XDebug plugin for VC6. Look here

Humanier