Reputation: 455
I have scoured the help files for Visual Studio and could not locate any information as to the meaning of some the icons in the status bar along the bottom of the main window of the IDE.
Does anyone know of a reference?
Specifically, there is an icon that shows a pair of binoculars over an animated page with boxes scrolling down it.
alt text http://img515.imageshack.us/img515/358/vs2008statusbar.png
Upvotes: 6
Views: 3135
Reputation: 829
On the bottom of this MSDN article you can find table with predefined VS status bar animations:
0 Standard animation icon
1 Animation when printing
2 Animation when saving files
3 Animation when deploying the solution
4 Animation when synchronizing files over the network
5 Animation when building the solution
6 Animation when searching
Upvotes: 2
Reputation: 11957
That'll be your "Find In Files" animation.
You can see it at the bottom of this image:
The only other icons I've seen on there are Build and Save.
Upvotes: 2
Reputation: 19960
Do you mean the "Error List"
Errors - A red circle with a white X
Warnings - Yellow triangle with black !
Info - White circle with blue i
Errors, stop you code being compiled.
Warnings, are possibe problems which can be ignored (but probably shouldn't)
Info, tells you information
Upvotes: 0
Reputation: 22368
AFAIK the only icons that appear there are when you are building a project.
Upvotes: 0