Greetings,
I recently upgrade from VS2003 to VS2008 and have seen some significant differences in the behavior of Visual Assist (build 1837) with the exact same source project.
1) I had to disable 'Get content from default Intellisense' as it frequently failed to parse my files. Also I noticed that when it was enabled I was not getting a VAX dialog (with the transparent tomatoes) but what I believe must have been the std VS one.
2) I now do not get suggestion boxes when typing some basic characters. I must hit ctrl+space to get a completion box.
Example:
struct Foo
{
static int smem;
int mem;
};
void complete1()
{
Foo f;
f.
}
void complete2()
{
Foo::
}
In both complete1 and complete2 when I start type the line I do get a suggestion box for (f and Foo). However after I type the period or the second colon, nothing. It would expect that a suggestion box or the full completion box should appear automatically (as it did in VS2003). It does not, any suggestions?
Thank You