icons

find icon for .exe

I have the path name to a .exe file. How do I find the path to the icon that windows would use if this file were dropped on the desktop? (I want to display this icon in my own program.) I need to be able to find the icon via my C# program at runtime. Using C# in Visual Studio 2008. ...

Ideal size for .ico

What is an ideal size for a .ico file, that would sit in the top corner of a window? ...

iPhone SDK System Provided Buttons and Icons

Where can the System-Provided Buttons and Icons mentioned in the following link to the iPhone Developer Human Interface Guidelines be found in the SDK? http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/SystemProvided/SystemProvided.html I expected them to show up in Interface Builder somewhere,...

Why does toolbar icons in VB6 looks worst in quality when running as an EXE?

Hi, I have a toolbar in a VB6 editor program which has a 24*24 icons in 24bits color. I put in the photos in a res. resource file and load them into the program via loadImage. the problem is i can see the icon quality looks good running in debug mode but when i compile the program into an exe, there's a severe degradation going on. I h...

nokogiri: Get shortcut icon from a page

How can I do that? ...

C# Add Icon To ToolStripMenuItem

I have a ToolStripMenuItem in my program. I also have an icon on my computer, for simplicities sake lets say its path is c:\myicon.ico How can i make the ToolStripMenuItem use this icon? ...

C# Get the default icon of an exe file

Possible Duplicate: Get File Icon used by Shell In my program i am reading a directory of files and displaying them as a ToolStripMenuItem Normally i would use: item.Image = Image.FromFile("icon.ico"); But how would i get the default icon that a given exe uses: item.Image = Image.FromEXE("program.exe"); Is there a simple ...

Store Image in DataTable

I want to store image into my datatable and while adding colum I want to set its default value, sending you code doing with checkboxes.. public void addCheckBoxesRuntime(){ for (int i = 0; i < InformationOne.Length; i++) { dt = new DataColumn(InformationOne[i][1] + " (" + InformationOne[i][0] + " ...

How to set the Icon property in code? How to understand the way it is done in XAML?

When I choose an Icon for a wpf Window through the designer I get the following XAML: <Window Icon="/MyNameSpace;component/myIcon.ico"> Please explain this notation for me! Say I want to set the Icon in the code behind. How do I translate the XAML to C#? ...

Where can I find custom UITabBarSystemItem icons?

Is there a resource out there some place that has custom UITabBarSystemItem icons that others can use. I know you get some from Apple to start, but I would imagine there are a lot more that are very common. I don't see a reason for each person to recreate the wheel for things like home, settings, etc... ...

Add Icon to Visual Studio 2008-Built Class Lib DLL?

I have a .ico that I want to add to several class library DLL projects, using Visual Studio Pro 2008. For each project, I added the ico, set the built type to 'embedded resource' and set the icon in the project prefs page. Still the icon is the default. What did I miss? Thanks. ...

Winforms console application, how can I embed an icon in exe file?

I have a console application, I want to include an ico file as an embedded resource in the exe, then have it as the programs icon in windows explorer, how is this done? ...

What do the icons in Eclipse mean?

What do the icons in the Eclipse debugger mean? What do the icons in Eclipse's Package Explorer mean? What do the little letters on top of Eclipse icons mean? What's the difference between the two error icons in Eclipse (the x in the red circle and the one with the light bulb)? I just came to SO looking for this, didn't find it, and fou...

iPhone: add badge to icons internal to my app

Hi, I am trying to add badges to the icons in my app. e.g. in the facebook app, in the home page the number of pending requests is shown on the requests icon. Can someone provide any links/ideas on how to do this? Thanks, V ...

What's the best size for toolbar icons?

Windows *.ico files and Mac *.icns files contain multiple size icons. A lot of the icons you can buy also come in various sizes. But, as far as I'm aware, most implementations of toolbars set the size that's displayed. Are there any guidelines as to the best size to use on different platforms? ...

free media resources useful for programmers

Hi there I've started recently to learn C# and to build some desktop applications. Now I'm asking myself where can I find free icons, wav and small mp3 files which can be used in my applications. many thanks ...

How can I set the icon for my program? I mean, the actual .exe that will be on the desktop.

I can change the icon in the WindowsForm. How can I actually change the icon in the desktop? ...

Change Google Maps Infowindow Close Icon

How can I change the default graphic for the Infowindow close button? ...

How to display the copyright icon in UILabel text?

Hi, Does any one know how to display the copyright icon in UILabel text? This is the icon with a circle around c. The html code for it is: &copy; or &#169;. I tried the following code: UILabel *contactInfo = [[UILabel alloc] initWithFrame:CGRectMake(-55,135,420,100)]; contactInfo.text = @"'&#169;):'2009 Nationwide "; or contactInfo....

How to change JFrame Icon

I have a JFrame but it displays a Java icon on the title bar (left corner). I want to change that icon to my custom icon. How should i do it ? ...