One GOOD thing about VC7 stuff is, it understands ansi... it actually seems to know about variable scope... I don't have to convert my loops anymore... I can stick to this:
for ( int i = 0; i < max; i++ ) { /*do stuff*/ }
instead of having to do
int i; for ( i = 0; i < max; i++ ) { /*do stuff*/ }
(which has cost me quite some trouble in the past... with VC6)
Cheers,

