Reputation: 815
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!
Upvotes: 2
Views: 1027
Reputation: 28837
try using the GetBuffer method in the watch window.
cStringVariable.GetBuffer()
Upvotes: 0