Hi, I'm working with visual assist for a long time now, it's really the best buy!
The relatively new feature VA Outline is a cool improvement and I really like it.
But, teher are some improvements I wish to have inside:
Let me explain.
I'm working with Build 1624 unter VS2005 coding C++.
If I have an cpp File which has in the cpp file functiondeclarations at the beginning of the file, these are displayed as well in vaOutline.
// function definitions
static void function1(CString val);
static void function3(CString val, int ival);
static void function2(CString val);
// watch these functiondefinition written in more than one line because
// of better reading on small monitor
// the ";" is not shown in VA Outline
static CString functionwithlongparameterlist(CString val1, CString val,
CString val3, CString val4);
// functions go there
void function1(CString val)
{
// do something
}
void function3(CString val, int ival)
{
// do something
}
void function2(CString val)
{
// do something
}
try this and see that you are getting each function listed twice...
Second thing is : What also would be nice to have the ability to SORT the list either [A-Z] or "like in file" (thats how it is now, but sometimes if you have large files with many functions inside and you search a special function its hard to find if you didn't sort the functions in your file)
Regards HackMan