icons

Add icon to home screen like Safari

I saw the Bug Me iPhone app and was intrigued by the ability to add icons to the home screen. I figured it would work similar to the way that Safari achieves it. There as a similar question here that said it was not possible: http://stackoverflow.com/questions/1451961/implementing-add-to-home-screen-ala-safari Clearly there is a way an...

Have minimized windows with a unique icon/color?

Are there any programs or way to get a specific icon or any icon for that matter into a minimized window? The reason why I ask is that I hate having 3 or more windows of the same program minimized on my taskbar using the same icon. When I want to open up the program i'm not sure which window to activate. -edit I'm asking for a program...

Online Presence in SharePoint 2010

Has anyone tried with online presence in SharePoint 2010? I used to take help of imnrc javascript function in MOSS 2007 but the same does not seem to work in SharePoint 2010. Thanks, ...

C# Arranging icons and changing folder display

Is it possible to arrange icons (just placing them at different locations on the desktop/in folders), and if so, could someone point me in the right direction? I'm also interested in changing the properties for a folder programmatically, like "Documents", "Pictures", "Detailed list" and so on. Thanks ...

Java applet icon doesn't show

I have a java applet where I've changed the image icon that appears in the top left corner of the window. The code I use is this: Toolkit kit = Toolkit.getDefaultToolkit(); Image frameIcon = kit.getImage("src/myapp/resources/logo.png"); getFrame().setIconImage(frameIcon); Everything works fine until I deploy the ap...

iPhone Icon file in bundle blank when building for App store distribution

I have been spinning my wheels for a couple hours on why when I build my app with my distribution cert with the device as the target the Icon.png file in the bundle is empty. If I build with my developer cert or against the simulator the Icon.png in the bundle matches the one in my project file. I have verified my Icon.png is 57X57, ha...

Where to find iPhone system buttons and icons graphics?

Hey guys, I'm trying to find a way to use the original Apple system buttons and icons in a web site. Is there a way to get these original graphics in png format? There are not-so-nice ways to obtain them of course. Two I was thinking of: Save them from this link, then convert to png. Take screen captures on the iPhone itself, and ...

Displaying an Ico File in a Silverlight 3 Application

I need to display favicon.ico files fetched from arbitrary Web Sites as a BitmapImage in a Silverlight 3 application but Silverlight 3's BitmapImage only supports PNG and JPG. Any suggestions? ...

Windows save, open... icons as vector graphics?

Hello, for my application (WPF) I'd like to use the standard icons for save, open... However, I'm not aware of them being available as vector graphics? So, where can one get them, is it maybe possible to extract them from some DLL files or whatever? Thank you very much! ...

How to add the document library column named "Type (icon linked to document)" into list view?

I am working with a list view. I want a column to have look similar to the document library column named "Type (icon linked to document)" column. I should also be able to set the path this hyperlinked icon should open. I tried a lot with existing site columns but could still not figure out how to do this. Has anyone implemented this earl...

Free vector icons

Are there any free vector icons (as in, suitable for use in an open source project using WPF) for basic desktop program toolbar buttons like Back, Forward, Print, Save etc.? ...

What does the scalpel-shaped icon in the gutter in Visual Studio 2008 mean?

What does this icon mean? It doesn’t seem to have a tooltip, it doesn’t respond on right-click, and it doesn’t seem to want to disappear either. ...

How to create a high quality icon for my Windows application?

If you are running Windows with a higher DPI setting you will notice that most application icons on the desktop look terrible. Even high profile application icons such as Google Chrome look terrible while for example Firefox, Skype and MS Office icons look sharp: (example) I suspect that most icons look blurry because a lower resolu...

Setting Icon for wpf application (VS 08)

Hi everyone, Before going much further i'll mention I have tried solutions in following: http://stackoverflow.com/questions/320677/how-do-i-set-the-icon-for-my-application-in-visual-studio-2008 http://stackoverflow.com/questions/198848/set-application-icon-from-resources-in-vs-05 I am trying to set an icon for my application. AFAIK,...

Can BitmapFactory.decodeFile handle .ICO (Windows icons) files ?

Hi all, I am working on Android. Trying to display the "favicon" (aka "shortcut icon") or web pages. So I already have the code to get the URL of this icon from any website, and download it onto my Android. Now I am trying to make a Bitmap out of it, but always get null as a result. The code: String src = String.format("file:///data...

Adding icon to gcc executable and opening in terminal.

I made a program to connect to a device via Bluetooth and send the data to the web using pure C in gcc. I won't be able to implement any GUI portion in the code right now but I need to deploy it to test users for testing. I want to have the executable with an icon so that a user can click on the executable and the program starts in the t...

Get possible number of Desktop Icons

I've my screen resolution set to 1024 x 768 pixels and the icon size is 32x32 and default icon spacing (not changed). how can I calculate possible number of desktop icons that can fit into that resolution? ...

Localization of icon and default screen in iPhone

Can the app icon and default screen be localized in iPhone? Has anyone tried it? In theory it should be possible as they're just image resources, but I found no explicit mention of this in the documentation, and I wouldn't like to have my app rejected or failing for this. ...

Set icon without *.pro

Hi all. I have an application written with Qt (I use VS + Integrator). Need to set an icon for it. I read "Setting the Application Icon" tutorial, but i can't use this method because I have no *.pro file. Googled for an hour and found no solution :( Any suggestions? ...

Displaying same icon in 2 different sizes on c#

My goal is to display the same icon twice, but each time in different size. I tried the following: FileStream fs = new FileStream("name_of_the_icon_file.ico", FileMode.Open); Icon ico = new Icon(fs, 32, 32); //create an in-memory instance of the icon, size 32x32 Icon ico2 = new Icon(fs, 16, 16); //create an in-memory instance of t...