I don't understand. Using C++ I have added this test enum to a header file:
enum FelineTestEnumCase { FELINE_ONE, FELINE_TWO, FELINE_THREE };
and this code to the matching cpp file:
static void testGeneralCode()
{
FelineTestEnumCase enumVar = FELINE_ONE;
switch(enumVar)
{
ca|
}
}
With the caret where the red line is, I am getting a listbox suggesting "case", since this is what I am currently typing. When I type a space after "case" I get a suggestion list from VA, offering me the enum items, which come from VA's Smart Suggestions:
http://www.wholetomato.com/products/features/smartSuggestions.asp
until you have typed "case " we don't know you are doing this. You might be typing a "default:" line, or something different again.
Are you seeing the same thing? Given this code example, what are you typing, and what are you expecting to see, to have happen?