Template Results can only show one value type

Hi there,

When looking at template results, the column “Value” can show the data in various types: Hex, Decimal, Octal and Binary. However, only one of these can be enabled when using the table header’s context menu.

I have a need to enable both Hex and Decimal at the same time so I can correlate values better. I’d appreciate if you could allow for this. I feel it wouldn’t be a big change but it would make my task much easier.

Yes, we have been planning on adding that feature for a while and we’ll see if we can get it into the next version. If you need this right now it is possible to create your own type and then set a custom read function to control what is shown in the Value column. For example you could use:

    typedef int32 MyInt32 <read=Str("%d [%Xh]", this, this)>;

    MyInt32 val;

Graeme
SweetScape Software

That worked perfectly, thank you very much!