VA.X 1442 with VS 8:
I just installed the latest VA.X. As far as I can tell, VS no longer hangs when I use certain template types.
However, I've had another problem for some time. I'm not sure, but I think it started with VA.X 1441 (yes, the intermediate version). But since I upgraded to VS 8 at about the same time, it may be the combination of VA.X with VS 8.
The problem is that I don't get any parameter info. Never. Even this simple code (from another post of yours) does not produce the parameter info:
static int calculateNumber(int nStart, int nMiddle, int nEnd)
{
return (nStart + nMiddle + nEnd) / 3;
}
static int getCounter()
{
return calculateNumber(|)
}
Is there some hidden option to enable/disable parameter info ?
Also, I still have another problem where none of the member functions of a parent class are visible in the derived classes.
Regards,
Daniel