icons

What would be a good icon for voiding and unvoiding a worksheet?

In our application we have an option to void and unvoid a worksheet(make it so it doesn't matter for reporting, etc). What would be a good icon to represent this action? ...

Which icon sizes should my windows application's icon include?

I have a windows application which will run in Windows XP and newer (i.e. Vista/Windows 7). According to the Vista UI Guidelines, the standard sizes are 16x16, 32x32, 48x48, 256x256 (XP standard sizes do not include the 256x256 icon). In addition to those sizes, I also have 96x96 and 128x128 (and could create more). Which of these icon ...

c# problem with systray icons in windows-server

Hi guys, i work with windows server 2003 (and 2008) and C#, i have a problem with systray of the desktop.I have done an application for disk managment and when the application start, it hide itself from taskbar and adds an icon in the systray. When i click on this icon (in the systray) the Form of the application is showed. I have cre...

icons not display in 64-bit build under windows

I have 256x256 PNG compressed icons working under Win7 with my 32-bit builds, but my 64-bit builds aren't showing the high res icons. When I extract the ICO file from the 64-bit executable, it has the 256x256. I was under the impression I shouldn't have to do anything special for 64-bit builds vs. 32-bit builds and that if it works in ...

Make Windows refresh icon cache

I really liked the oxygen appearance of KDE SC 4. I wrote a program to apply these icons to windows. The program is written in NSIS, and is currently nearly fully functional. However, the only way I found to make Windows aware of the icon changes is to kill explorer.exe, delete the icon cache, and respawn explorer.exe. SHChangeNotify wit...

Tabbar icons issue

My application is a tab bar based app, I have 5 tabs each of which requires to have a customized image for the icon. I tried loading the image for each of the tabs, and it works. The problem is I see a greyish circle for one of the icons, instead of a football image. Each of these images are in .png i.e transparent. The football art is...

Visual Studio Installer Project: Installer and Application Icons

I've got an icon for one of my applications, which I've embedded in a resource file and is used as the main icon for the application. So far so good. However, I want to use the same icon for the installer project, and for the shortcut that the installer places in the Start Menu. I can set the icon for the installer package itself, but o...

Recognize image with PHP

I run a site with lots of small images (www.iconfinder.com) and would like to develop a feature that can compare and recognize images. A user should be able to upload an image (icon) and then the site will respond with information about the image if it's in the database. What is the approach to finding similar (or the same image). I kno...

In resources of a executable file, how does one find the default icon?

Hi all, i need to find the default icon of a windows executable (PE file = dll, exe, com..) programatically. I do know how to walk throught the resources and identify what is an icon, what a cursor etc, but as far as i know none of the icons is in any way marked as the default one. So, does somebody know, how to find the default icon? M...

Override file icon in windows shell/explorer

Is there a way to override the icon and/or preview of a specific file format (my own) in Windows Explorer using C#? My files are xml files that contain a base-64 image, I'd like to display this image in Explorer as the file icon. ...

Fade/Redraw/Modify ImageIcon on click in SWING JLabel on the fly

Hi, I want a JLabel with an Icon to look "clicked", when mouse is clicked on the Label. The Label contains an ImageIcon. Instead of changing the icon to another one, I want to redraw the ImageIcon with another colorset (e.g.: setXORMode(new Color(255,0,0) ) "on the fly". Anyone has a hint how to manage that? JLabel my_label = new JLabe...

How can I replace C# windows forms executable application icon?

Hello. I already finished my development. But I don't like the windows icon for the executable application. How to replace the default windows icon with my favorite one? Thanks. ...

WPF: Visual studio like error buttons

I want to get this. Everything works so far, buttons act as filter and are bind to the grid control. All i want is the icons and counter on the button. Whats the correct way of implementing those? <ToggleButton x:Name="IsErrorShown" Margin="4" Width="100" Content="{lex:LocText Errors, Assembly=Client}"> I have tried adding image li...

No icons in pyQt exec application built with bbfreeze

Hi, The story is: I have working pyQt4 GUI application. After building *.qrc and *.ui files I run it from commandline: python myapp.py And I see my astonishing ;) icons. When I 'compile' it with bbfreeze there are no icons. I know that currently bbfreeze doesn't support icons, but I thought that when pyqt resources are compiled an...

Tabbar without Text under the icons (iphone)

Hi *, i try to remove the text under the icons in my tabbar (created with the IB). At start i see no text, after clicking on it and change to the other view i see the text. how can i hide the text also in the other views ? thx ...

Creating a shortcut: how can I work with a drawable as Icon?

Hello, Below is My code to create a shortcut to a selected application. I have really no problem and the application work quite well. The problem is that I am able to create a shortcut with a ressource from my application: intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, R.drawable...

CSS How to display a single icon out of a matrix for a list item.

Hi, I would like to use a single icon out of an icon matrix (with around 16 x 16 icons) as the bullet image for a list. I can position the background image with background-position, and repeat: norepeat. But this will display the whole line of the remainder of the matrix, so I'm looking for a way to crop the background image. (By using ...

Why does a "T" icon appear in Delphi's "Search for Usages" dialog?

Instead of the normal IDE application icon, Delphi 2009 shows a small icon with a "T" in the "Search for Usages" dialog (see image below). What does this symbol mean? ...

Understanding *nix icons' paths

Could someone please explain, why many programs have their icons' paths this way: /usr/share/program/icons/hicolor/16x16/... What I don't understand is why hicolor and why 16x16, 32x32 etc. Are there any functions (e.g. in GTK) that automatically get the proper icon from such kind of paths? Thank you! ...

Set an icon for a file type

I have used Qt Creator and created my.exe file and a new extension ".newext" and have manually associated .newext files to the my.exe like this. The exe file has as its icon which is square figure and named myIcon.ico. I have described in myapp.rc file the icon like this: IDI_ICON1 ICON DISCARDABLE "myIcon.ico" A...