Dan Liebster
Dan Liebster

Reputation: 455

Visual Studio 2008 - Status Bar Icon Glossary?

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

Answers (4)

m1k4
m1k4

Reputation: 829

On the bottom of this MSDN article you can find table with predefined VS status bar animations:

http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.shell.interop.ivsstatusbar.animation.aspx


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

demoncodemonkey
demoncodemonkey

Reputation: 11957

That'll be your "Find In Files" animation.

You can see it at the bottom of this image:

alt text http://msmvps.com/cfs-filesystemfile.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/peterritchie/lean-VS2k8.JPG

The only other icons I've seen on there are Build and Save.

Upvotes: 2

Dead account
Dead account

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

Gerrie Schenck
Gerrie Schenck

Reputation: 22368

AFAIK the only icons that appear there are when you are building a project.

Upvotes: 0

Related Questions