IDE: Visual Studio 2008
VAX: Build 1619
Hi,
I never noticed this issue before build 1619 in VS2005. If I'm creating a class with 3 prototypes, as in the example below:
class foo
{
void member1();
void member2();
void member3();
};
Normally what I do is the following:
1) Right click member1() and go to Refactor >> Create Implementation. VAX Creates the implementation and switches over to the CPP file that received the implementation. Everything is fine so far.
2) I CTRL+TAB to go back to the header file. This is a quick way to get back to the header so I can do the same thing for member2().
3) Right click on member2() and Refactor >> Create Implementation, however I can't do it because every single item under the refactoring menu (Except for Find References) is grayed out. I usually have to wait around 15-20 seconds for the menu to act normally and have the "Create Implementation" option.
While I'm waiting for the refactor menu to have valid entries, I'm continuously right clicking on member2() and checking the refactor context menu. I do this until I notice the items are acting as normal.
Has anyone else experienced this issue?