Hello all,

I am actually trying something very basic and I simply cannot get it to work.

I have a class which contains a long parameter I need to display in the watch window so I have added it to the autoexp file.


This class is contained in another class.
Code:
CFieldClass
{
public:
  // lots of stuff
  unsigned int m_Value;
}

Class CContainer
{
  public:
  // lots of stuff
  CFieldClass theData;
}
In the autoexp.dat file I thought I needed the following:

CFieldClass=ID=<m_Value,u>
CContainer=Num=<theData>

However, this is having no effect. I have looked through the examples and tutorials etc and am blind to what I have done wrong.

Can anyone point it out for me, please?