how does VS2010 help us over VS6?
To keep it short, here are many helpful features, but the 2 most important ones (for me also) for the code group are:
1) it checks to see if variables have been defined with appropriate scope.
2) it detects misspelt words as you are writing the code.
These are done without even requiring a compilation attempt.
*****FIX YOUR CODE BEFORE YOU EVEN TRY TO RUN IT ****
Just these 2 additions are also very powerful in other areas :
Let us say you have written some code and you decide that a variable name is not quiet what you want it to be ... so you redefine it.
The instant you do that, all the areas in your code where the old variable name was used will become highlighted because the variable with the old name is no longer defined.
All one has to do is step from one highlighted spot to the next correcting the name.
There are so many nice features that make it very hard for a person to create stupid errors into their code, and then have to waste a lot of time hunting them down.
Every time I have to go back to VS6 I cringe.