Suddenly, and I know for a fact this used to work, the "using" keyword is not being respected by VAX.
I have a class MyDynaset which is derived from privately from ODynaset. To access the ODynaset method GetRecordCount(), I say, in my MyDynaset.h file:
public:
using ODynaset::GetRecordCount;
Now, in some CPP file somewhere, I have:
MyDynaset ds;
ds.
... and when I hit "Ctrl-Alt-T", all I get are the methods in MyDynaset - I don't, suddenly, get any of the methods that are "publicized" from ODynaset, like GetRecordCount().
This is a major annoyance...