I was trying to convert this:if ("" == sNewValue)... to this:if (sNewValue.IsEmpty())
... by typing "IsE<CR>".  I've done this eighteen zillion times with VAX with no problem, but this time I got this:if (sNewValue.IsEqualCATID())
Which apparently is a #define in COMCAT.H:#define IsEqualCATID(rcatid1, rcatid2)       IsEqualGUID(rcatid1, rcatid2)
I'm thinking maybe VAX is having a hard time keeping up with my blazing keyboard speed?