Need icons for the toolbar

  • Thread starter Thread starter Cecilia Bergengruen
  • Start date Start date
C

Cecilia Bergengruen

I need icons to put in my toolbar, for the following buttons:

Print
Next
Previous
First
Last
Duplicate
Save
Discard

The ones I have, when disabled don´t appear clearly.

Can any one send me some good icons ?
I will greatly appreciate any help !
 
Hello,

Cecilia Bergengruen said:
I need icons to put in my toolbar, for the following buttons:

Print
Next
Previous
First
Last
Duplicate
Save
Discard

The ones I have, when disabled don´t appear clearly.

Can any one send me some good icons ?
I will greatly appreciate any help !

Did you have a look at the icons which come with VS.NET (extra option in the
setup)?
 
there are a plethura of free icons in the world of linux that look very
sharp. kde has the most "windows"-ish and others like gnome offer completely
different visual approaches. imo the irony here is that linux icons eclipse
windows icons in visual appeal by the same magnitude that window overshadows
linux in standardization and ease of use.

here's one link...but searching google for "gnome icons" or "kde icons" will
return a huge selection.

http://jimmac.musichall.cz/ikony.php3

hth,

steve
 
Cecilia,
When the Icons don't have the right size, the look terrible, can it be that.

The iconmap at my computer is
C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Graphics\icons

I don't know the size anymore, just try there are small and large ones?
Cor
 
Hello,

Cor said:
C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Graphics\icons

The icons are Windows 95-style ones, but they should work.

;-)
 
btw, this works fairly well for converting bitmaps to icons using .net

Imports System.Drawing

Private Function getIcon() As Icon
Dim bitmap As Bitmap = picBitmap.Image ' just a picture box w/ a loaded
image
Dim graphic As System.Drawing.Graphics
bitmap.MakeTransparent(transparentColor) ' arg is class variable...make
it whatever i.e. color.white
picBitmap.Refresh()
Dim icon As Icon = icon.FromHandle(bitmap.GetHicon)
Me.Icon = icon
Return icon
End Function
 
Back
Top