Showing posts with label icons. Show all posts
Showing posts with label icons. Show all posts

Friday, March 30, 2012

Icons?

Hey All,
I was wondering if anyone knows where or how to obtain a broader selection
of icons than what appears to be natively shipped with Visual Studio?
For example, in SQL Server, the Query Analyzer has the datasource icons,
table icons, etc.
Does anyone know where these come from and how to obtain them?
Thanks & Regards,
TCSure,
Check out this blog:
http://blogs.msdn.com/jfoscoding/ar.../15/493263.aspx
-Demetri
"TCook" wrote:

> Hey All,
> I was wondering if anyone knows where or how to obtain a broader selection
> of icons than what appears to be natively shipped with Visual Studio?
> For example, in SQL Server, the Query Analyzer has the datasource icons,
> table icons, etc.
> Does anyone know where these come from and how to obtain them?
> Thanks & Regards,
> TC
>
>|||Hey Demetri,
Thanks for the reply. I actually have the ImageLibrary .zip file and
unfortunately, it does not contain all of the icons. It has one form of the
database and folder icons but does not contain the server or table icons
that I s.
-- TC
"Demetri" <Demetri@.discussions.microsoft.com> wrote in message
news:0D617BF9-A222-4255-AB12-D7FB0B9976AD@.microsoft.com...
> Sure,
> Check out this blog:
> http://blogs.msdn.com/jfoscoding/ar.../15/493263.aspx
>
> --
> -Demetri
>
> "TCook" wrote:
>|||Not related to VS, but has a wide selection of free icons:
http://www.famfamfam.com/archive/si...thats-your-lot/
Andrej
"TCook" <getmyemails2@.yahoo.com> wrote in message
news:eSJBHPGcGHA.3472@.TK2MSFTNGP02.phx.gbl...
> Hey All,
> I was wondering if anyone knows where or how to obtain a broader selection
> of icons than what appears to be natively shipped with Visual Studio?
> For example, in SQL Server, the Query Analyzer has the datasource icons,
> table icons, etc.
> Does anyone know where these come from and how to obtain them?
> Thanks & Regards,
> TC
>

Icons used in SQL 2005

I searched BOL, and I couldn't find information on icons used in all SQL Server 2005 sub-systems and what they mean.

I am mostly interested in SQL Agent job icons.

You'll find most of the graphics explained in each particular topic, other than the obvious red, green and yellow ones. You can also file a question in Books Online by using the feedback, where you can send a screenshot. If the document doesn't have a good explanation, you can ask them for one and they will put in a bug request for you.

Buck Woody

sql

Icons in enterprise manager 7

Hello,

apologizing in advance 4 propably asking a trivial question ...

in my Server list in Enterprise Manager 7.0 in front of the name of my
servers i have a small server symbol followed by an even smaller green
triangle in a circle (which, according 2 my information means "Server
running, currently not connected) followed by a vertical red zigzag
line.
But the context menue only gives me the optio "disconnect" which
indicates that im "connected"

Here my question:
what exactly is this symbol trying 2 tell me?

1ce again apologiesThe red zig-zag line means you are connected.

--
Hope this helps.

Dan Guzman
SQL Server MVP

--------
SQL FAQ links (courtesy Neil Pike):

http://www.ntfaq.com/Articles/Index...epartmentID=800
http://www.sqlserverfaq.com
http://www.mssqlserver.com/faq
--------

"Andreas" <am@.qbiq.de> wrote in message
news:b0192782.0311112350.6541a088@.posting.google.c om...
> Hello,
> apologizing in advance 4 propably asking a trivial question ...
> in my Server list in Enterprise Manager 7.0 in front of the name of my
> servers i have a small server symbol followed by an even smaller green
> triangle in a circle (which, according 2 my information means "Server
> running, currently not connected) followed by a vertical red zigzag
> line.
> But the context menue only gives me the optio "disconnect" which
> indicates that im "connected"
> Here my question:
> what exactly is this symbol trying 2 tell me?
> 1ce again apologies

Icons for Custom Tasks won't show up.

All aspects of my custom task work well except for the icon!

I have included the .ico in the assembly as an "Embedded Resource" and the icon has both 16X16 and 32X32 images. I have edited the IconResource property of the DtsTask attribute as follows:

IconResource="MyNamespace.MyDLLName.MyIconName.ico",

Where the output assembly is called "MyNamespace.MyDLLName.dll".

Has anybody got this working before? The Icon just never shows (I get the default blue square task icon).

Thanks in advance.

IconResource=”SSIS2K5.Samples.Tasks.CryptoTask.TaskIcon.ico”,

The IconResource parameter points

to the icon to be used in the Toolbox. It is not required. If not provided, the designer uses

a default icon. However, if you do provide this, the name of the resource must be

“TaskIcon” and you must provide the fully qualified name.

Have you named the icon "TaskIcon.ico"?

Kirk Haselden
Author "SQL Server Integration Services"

|||

Thanks Kirk,

Exactly what I needed!

I didn't see anything in the documentation about the "TaskIcon.ico" name requirement, but I imagine it must be there somewhere... so thanks again

Actually, I just thought of something - I have two custom tasks (and both their UIs) in the same Assembly. I am guessing that this means that both of the tasks will need to have the same icon. Can you think of any reason, other than modular deployment / maintenance advantages, for keeping the tasks in separate Assemblies?

|||

The restriction is that the filename and the default namespace must match the IconResource string, it does not have to be the literal TaskIcon.ico

The most likely cause is that the two do not match up correctly. Try this article-

How to add an icon to your component
(http://www.sqlis.com/default.aspx?22)

|||For tasks, I believe it does need to be the name "TaskIcon.ico" for it to show correctly in the toolbox unless something's changed in the code.|||

Someone changed it. I updated the IncrementTask sample to include an icon.

1 - Open project and select Add Existing Item, select any icon you have.

2 - Set Icon file name, I chose MyIcon.ico

3 - Set properties of icon file, changing the Build Action to Embedded Resource

4 - Add the IconResource property to the existing DtsTask attribute in the code file-

DtsTask
(
DisplayName = "IncrementTaskCS",
Description = "IncrementTask Sample",
IconResource = "Microsoft.Samples.SqlServer.Dts.MyIcon.ico",

Sample project here - http://www.sqlis.com/download/IncrementTaskWithMyIcon.zip

Icons for Custom Tasks won't show up.

All aspects of my custom task work well except for the icon!

I have included the .ico in the assembly as an "Embedded Resource" and the icon has both 16X16 and 32X32 images. I have edited the IconResource property of the DtsTask attribute as follows:

IconResource="MyNamespace.MyDLLName.MyIconName.ico",

Where the output assembly is called "MyNamespace.MyDLLName.dll".

Has anybody got this working before? The Icon just never shows (I get the default blue square task icon).

Thanks in advance.

IconResource=”SSIS2K5.Samples.Tasks.CryptoTask.TaskIcon.ico”,

The IconResource parameter points

to the icon to be used in the Toolbox. It is not required. If not provided, the designer uses

a default icon. However, if you do provide this, the name of the resource must be

“TaskIcon” and you must provide the fully qualified name.

Have you named the icon "TaskIcon.ico"?

Kirk Haselden
Author "SQL Server Integration Services"

|||

Thanks Kirk,

Exactly what I needed!

I didn't see anything in the documentation about the "TaskIcon.ico" name requirement, but I imagine it must be there somewhere... so thanks again

Actually, I just thought of something - I have two custom tasks (and both their UIs) in the same Assembly. I am guessing that this means that both of the tasks will need to have the same icon. Can you think of any reason, other than modular deployment / maintenance advantages, for keeping the tasks in separate Assemblies?

|||

The restriction is that the filename and the default namespace must match the IconResource string, it does not have to be the literal TaskIcon.ico

The most likely cause is that the two do not match up correctly. Try this article-

How to add an icon to your component
(http://www.sqlis.com/default.aspx?22)

|||For tasks, I believe it does need to be the name "TaskIcon.ico" for it to show correctly in the toolbox unless something's changed in the code.|||

Someone changed it. I updated the IncrementTask sample to include an icon.

1 - Open project and select Add Existing Item, select any icon you have.

2 - Set Icon file name, I chose MyIcon.ico

3 - Set properties of icon file, changing the Build Action to Embedded Resource

4 - Add the IconResource property to the existing DtsTask attribute in the code file-

DtsTask
(
DisplayName = "IncrementTaskCS",
Description = "IncrementTask Sample",
IconResource = "Microsoft.Samples.SqlServer.Dts.MyIcon.ico",

Sample project here - http://www.sqlis.com/download/IncrementTaskWithMyIcon.zip