Although it works flawlessly in .NET 2002, on VC6 the Context combobox on the VAX wizardbar (is that its name?) seems to only update which function you're editing if you use the mouse to navigate, not if you use the keyboard.
For example, if I have these two functions:
void MyClass::Foo()
{
// Code goes here.
// Code goes here.
// Code goes here.
// Code goes here.
}
void MyClass::Bar()
{
// Code goes here.
// Code goes here.
// Code goes here.
// Code goes here.
}
If I use the mouse to click back and forth between the Foo() and Bar() function bodies, the Context combobox gets correctly updated. But if I start in the middle of Bar() and use the up-arrow key to navigate to the middle of Foo(), at no point does the Context combobox change from Bar() to Foo().